This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| using System; | |
| using System.Threading; | |
| static class Program { | |
| static void Main() { | |
| Console.Write("Performing some task... "); | |
| using (var progress = new ProgressBar()) { | |
| for (int i = 0; i <= 100; i++) { | |
| progress.Report((double) i / 100); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "dependencies": { | |
| "coc-angular": "^0.3.1", | |
| "coc-css": "^1.2.2", | |
| "coc-eslint": "^1.2.2", | |
| "coc-highlight": "^1.2.5", | |
| "coc-html": "^1.2.1", | |
| "coc-java": "^1.4.5", | |
| "coc-json": "^1.2.4", | |
| "coc-markdownlint": "^0.4.0", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ! -*- coding: utf-8 -*- | |
| ! | |
| !keycode 37 = Control_L NoSymbol Control_L | |
| !keycode 64 = Alt_L Meta_L Alt_L Meta_L | |
| !keycode 105 = Control_R NoSymbol Control_R | |
| !keycode 133 = Super_L NoSymbol Super_L | |
| !keycode 134 = Super_R NoSymbol Super_R | |
| !keycode 135 = Menu NoSymbol Menu | |
| !keycode 147 = XF86MenuKB NoSymbol XF86MenuKB | |
| !keycode 204 = NoSymbol Alt_L NoSymbol Alt_L |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| set nocompatible | |
| filetype off | |
| set rtp+=~/.vim/bundle/Vundle.vim | |
| call vundle#begin() | |
| Plugin 'VundleVim/Vundle.vim' | |
| Plugin 'tpope/vim-fugitive' | |
| Plugin 'scrooloose/nerdtree' | |
| Plugin 'scrooloose/syntastic' | |
| Plugin 'jesseleite/vim-noh' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| syntax on | |
| set nocompatible | |
| filetype off | |
| set rtp+=~/.vim/bundle/Vundle.vim | |
| call vundle#begin() | |
| Plugin 'VundleVim/Vundle.vim' | |
| Plugin 'tpope/vim-fugitive' | |
| Plugin 'scrooloose/nerdtree' | |
| Plugin 'scrooloose/syntastic' |