vi (vim)
をテンプレートにして作成
[
トップ
] [
タイトル一覧
|
ページ一覧
|
新規
|
検索
|
最終更新
|
ヘルプ
|
ログイン
]
開始行:
* vi (vim) [#rf9f0bfa]
** 最強エディタ [#ib0c29b8]
*** コマンドモード [#vd786bb6]
**** 現在の行から最終行まで削除 [#me98586f]
- dG
*** コマンドライン [#o9d1b760]
**** 文字列置換 [#x57456dd]
- :1,$s/AAA/BBB/g
- 正規表現使用可
**** 検索時のハイライト取り消し [#t3f2c4e0]
- : nohl
**** 書き込み禁止ファイルを強制書き込み [#h14e1cc6]
- :w!
*** バイナリエディット
- vim -b faile
-- :%!xxd
-- :%!xxd -r
*** Tab 処理 [#h006c19b]
- set tabstop=4 paste noautoindent expandtab
-- expandtab : ソフトタブを使用する
- :retab
-- ハードタブをソフトタブに変換
*** コメント色の変更 [#f20ddfd6]
- /usr/share/vim/vim74/syntax/syncolor.vim
-- hi Comment ctermfg=lightyellow
-- hi Comment ctermfg=gray
*** ts, js ファイル [#ec870775]
- https://github.com/leafgarland/typescript-vim
git clone https://github.com/leafgarland/typescript-vim....
*** 設定例 [#y7b7c502]
- .vimrc
set noautoindent paste tabstop=4 shiftwidth=2 expandtab
終了行:
* vi (vim) [#rf9f0bfa]
** 最強エディタ [#ib0c29b8]
*** コマンドモード [#vd786bb6]
**** 現在の行から最終行まで削除 [#me98586f]
- dG
*** コマンドライン [#o9d1b760]
**** 文字列置換 [#x57456dd]
- :1,$s/AAA/BBB/g
- 正規表現使用可
**** 検索時のハイライト取り消し [#t3f2c4e0]
- : nohl
**** 書き込み禁止ファイルを強制書き込み [#h14e1cc6]
- :w!
*** バイナリエディット
- vim -b faile
-- :%!xxd
-- :%!xxd -r
*** Tab 処理 [#h006c19b]
- set tabstop=4 paste noautoindent expandtab
-- expandtab : ソフトタブを使用する
- :retab
-- ハードタブをソフトタブに変換
*** コメント色の変更 [#f20ddfd6]
- /usr/share/vim/vim74/syntax/syncolor.vim
-- hi Comment ctermfg=lightyellow
-- hi Comment ctermfg=gray
*** ts, js ファイル [#ec870775]
- https://github.com/leafgarland/typescript-vim
git clone https://github.com/leafgarland/typescript-vim....
*** 設定例 [#y7b7c502]
- .vimrc
set noautoindent paste tabstop=4 shiftwidth=2 expandtab
ページ名: