LoginSignup
0

More than 5 years have passed since last update.

goto-scope つくった

Last updated at Posted at 2015-06-13

メンテ出来てなかったので、atom.io から削除(unpublish)しました。 2016.8.3.

goto-scope つくった

goto-scope

string, function, variable に一発でカーソルを移動できる。

機能

  • カーソルを scope(string, function, variable 等) に一発で移動
  • ユーザー側でカスタム・コマンドを追加可能

コマンド

string
* goto-scope:string-next
* goto-scope:string-prev

function
* goto-scope:function-next
* goto-scope:function-prev

variable
* goto-scope:variable-next
* goto-scope:variable-prev

keyword
* goto-scope:keyword-next
* goto-scope:keyword-prev

constant
* goto-scope:constant-next
* goto-scope:constant-prev

キーマップ

デフォルト keymap は無し
おすすめのキーマップは特に思いつきません。

  • ノーマルユーザー

???

???

  • 私の設定(vim-mode).
'atom-text-editor.vim-mode.command-mode':
  's': 'goto-scope:string-next',
  'S': 'goto-scope:string-prev',
  ')': 'goto-scope:function-next',
  '(': 'goto-scope:function-prev',
  ']': 'goto-scope:keyword-next',
  '[': 'goto-scope:keyword-prev',
  '@': 'goto-scope:variable-next',
  '!': 'goto-scope:constant-next',

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0