Skip to content

Instantly share code, notes, and snippets.

@kenjikaneko
Created November 8, 2012 07:15
Show Gist options
  • Save kenjikaneko/4037360 to your computer and use it in GitHub Desktop.
Save kenjikaneko/4037360 to your computer and use it in GitHub Desktop.
small trick 集

##small trick 集 ###sudo.vim 使い方

  • 今開いているファイルがreadonly だった...
  • :e sudo:%
  • 特権ユーザーでファイルを開き直した!

###eregex.vim 使い方

  • 置換したい文字列に\を大量にいれなければいけないとき
  • 普通に置換コマンドを押すと
  • \要らずで置換できる!

###ctags (vim のプラグインではありません) 使い方

  • この関数、どこで定義されているのか調べたい!
  • brew install ctags
  • タグを生成したいディレクトリ階層の一番上で ctags -R
  • 関数名の上で C-] を押すと、定義元にジャンプする。
  • C-t で戻る、C-w] でウィンドウ分割で定義元を開く
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment