Below you will find pages that utilize the taxonomy term “Vim”
Posts
Vim - Install dart-vim-plugin with Vundle
使用 Vim 撰寫 Dart,可透過 Vundle 安裝 dart-vim-plugin 套件。
開啟 ~/.vimrc 檔。
vim ~/.vimrc 設定 Vundle 與 dart-vim-plugin。
... set nocompatible filetype off set rtp+=~/.vim/bundle/Vundle.vim call vundle#begin() Plugin 'VundleVim/Vundle.vim' Plugin 'dart-lang/dart-vim-plugin' call vundle#end() filetype plugin indent on ... 然後調用命令進行 Vim plugin 的安裝。
vim +PluginInstall +qall 安裝好後 Dart 程式碼會支援 Highlight。
也支援排版的功能。
:DartFmt 甚至是程式碼的分析。
:DartAnalyzer
read morePosts
Vundle - The plug-in manager for Vim
Vundle 是 Vim 的套件管理程式,安裝可直接透過 git 下載。
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim 下載後開啟 Vim 設定檔。
vi ~/.vimrc 加入設定 (不需要的套件請自行移除)。
set nocompatible " be iMproved, required filetype off " required " set the runtime path to include Vundle and initialize set rtp+=~/.vim/bundle/Vundle.vim call vundle#begin() " alternatively, pass a path where Vundle should install plugins "call vundle#begin('~/some/path/here') " let Vundle manage Vundle, required Plugin 'VundleVim/Vundle.vim' " The following are examples of different formats supported. " Keep Plugin commands between vundle#begin/end.
read morePosts
Vim - Display line numbers
Vim 預設 Line number 是關閉的。
如有需要將開啟 Vim 的設定檔。
vi ~/.vimrc 在設定檔內加上設定開啟 Line number。
set number 再次進入 Vim 就會看到 Line number 已被開啟。
如果只是暫時要開關 Line number,可以不用修改到設定檔。
可以直接輸入命令暫時開啟。
set number set nu 或是直接輸入命令暫時關閉。
set nonumber set nonu Link Display line numbers
read morePosts
Vim - Setup encoding
使用 Vim 時若因編碼導致文字無法正常顯示。
可開啟編輯 Vim 的設定檔。
vi ~/.vimrc 加上 encoding 設定後存檔。
set encoding = <Encoding> Vim 就可以用正確的編碼顯示文字。
read morePosts
Vim - Setting up Vim in Windows
Vim 要在 Windows 使用,可下載 Windows 安裝包下來安裝。
安裝完設定環境變數,在 Path 這邊加上 Vim 的目錄位置。
這樣在 MS-DOS 視窗就可以直接調用 Vim 命令了。
若是使用的是 cmder,那可以開啟 [cmder folder]endor\init.bat 進行設定。
找到 Path 設定的部分。
添加 Vim 目錄位置後存檔。
在 cmder 內就可以調用 Vim 了。
Link Vim in Windows – Medium Setting up Vim in Windows – Medium How To Install and Configure Vi / Vim Editor on Windows OS
read more