Skip to content

Instantly share code, notes, and snippets.

@snj
Created March 16, 2016 07:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save snj/4d13eb9573e86e4c7f5c to your computer and use it in GitHub Desktop.
Save snj/4d13eb9573e86e4c7f5c to your computer and use it in GitHub Desktop.
# ===================================================================
# like emacs
# ===================================================================
'atom-workspace atom-text-editor:not([mini])':
# ファイルの先頭へ移動
'ctrl-up': 'core:move-to-top'
# ファイルの最後へ移動
'ctrl-down': 'core:move-to-bottom'
# 行削除
'ctrl-k': 'editor:delete-line'
# 新規ファイル
'ctrl-shift-t': 'application:new-file'
'.platform-win32 atom-text-editor, .platform-linux atom-text-editor':
# 行頭へ移動
'ctrl-a': 'editor:move-to-first-character-of-line'
# 行末へ移動
'ctrl-e': 'editor:move-to-end-of-screen-line'
# 上に移動
'ctrl-p': 'core:move-up'
# 下に移動
'ctrl-n': 'core:move-down'
# 全選択
'ctrl-q': 'core:select-all'
# 削除
'ctrl-d': 'core:delete'
# grep検索(プロジェクト)
'ctrl-b': 'project-find:show'
# ファイルの先頭へ移動
'ctrl-up': 'core:move-to-top'
# ファイルの最後へ移動
'ctrl-down': 'core:move-to-bottom'
# ブックマークの設定・解除
'ctrl-2': 'bookmarks:toggle-bookmark'
# 前のブックマークへ
'ctrl-1': 'bookmarks:jump-to-previous-bookmark'
# 次のブックマークへ
'ctrl-3': 'bookmarks:jump-to-next-bookmark'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment