- https://en.wikipedia.org/wiki/Wikipedia:Keyboard_shortcuts
- https://ja.wikipedia.org/wiki/ショートカットキー一覧
いろんな(予定)ショートカット.手元のメモから.
- Visual Studio Code
- Adobe Acrobat
- Adobe Illustrator
- Google Drive (Web)
- Google Calendar (Web)
- Google Photo (Web)
- Google Docs (Web)
- Twitter (Web)
- Google Chrome
- Vim (vi)
- Emacs Magit
- Emacs Dired
- Emacs shell-script mode
- Emacs Twittering-mode
- Emacs markdown-mode
- Emacs (Advanced)
- LibreOffice Calc
- Windows File Explorer
- Windows 10
Visual Studio Code
- Show command palet: F1 or C-S-p
- Markdown: Open Preview: C-S-v
- Markdown: Open Preview to the Side: C-k v
- Keyboard Macro: Start/Stop Recording: C-A-r
- Keyboard Macro: Playback: C-A-p
- View: Zoom In: C-
=
- View: Zoom Out: C-
-
Adobe Acrobat
https://helpx.adobe.com/acrobat/using/keyboard-shortcuts.html
-
Navigation
- Shift-Ctrl-n: jump to a specifid page (dialog)
- ←: previous page
- →: next page
- Home: first page
- End: last page
- Alt-←: previous view
- Alt-→: next view
- Ctrl+Tab: next tab.
-
View
- Ctrl-l: full screen
- Ctrl- =: zoom in (English keyboard; =/+ key)
- Ctrl- -: zoom out (English keyboard; -/_ key)
- Ctrl- ;: zoom in (Japanese keyboard; ;/+ key)
- Ctrl- -: zoom out (Japanese keyboard; -/= key)
- Ctrl-0: fit page
- Ctrl-1: zoom 100%
- Ctrl-2: fit width
- Shift-Ctrl-L: 左右に並べて表示
- Shift-Ctrl-K: 上下に並べて表示
- Ctrl-r: ルーラ表示
- Ctrl-u: グリッド表示
-
Navigation/View (panel/pane)
- Shift-F4: toggle tool panel (pane)★
- F4: toggle navigation panel (pane)
- Ctrl-shift-F5: open and move focus to navigation pane
- F6: move to next panel (pane)
-
File operation
- Ctrl-w / Ctrl-F4: close tab
- Ctrl-q: exit
-
Edit
- Ctrl-Shift- +: rotate right
- Ctrl-Shift- -: rotate left
- Ctrl-Shift-r: rotate (dialog)
- Ctrl-Shift-d: page remove (dialog)★
-
Keys for selecting tools
Edit (編集) > Preferences (環境設定) (Ctrl-k)
で General (一般) のある Use Single-Key Accelerators To Access Tools (単一のショートカットキーでツールを使用可能にする) を有効にする.- h: hand tool
- v: select tool
- c: crop tool
- z: zoom tool
-
2つのファイルをTABで開いているとして,それらを別 Windows に分離する:
- Tile Horizontally: Shift+Ctrl+K
- Tile Vertically: Shift+Ctrl+L
Adobe Illustrator
https://helpx.adobe.com/illustrator/using/default-keyboard-shortcuts.html
Google Drive (Web)
https://support.google.com/drive/answer/2563044?hl=en
Control + /
でリストされるので,それで確認.
最近大幅に変更されたので,以下両方併記(old / new).
- Create new items
- Shift + t / alt + c then t: Document
- Shift + p / alt + c then p: Presentation
- Shift + s / alt + c then s: Spreadsheet
- Shift + d / alt + c then d: Drawing
- Shift + f / alt + c then f: Folder
- Shift + o / alt + c then o: Form
- r / alt + r: Sort menu
- n / F2: Rename selected item
- # or Delete (Windows): Remove selected items
- Shift + z / ctrl + alt + r: Add selected items to an additional folder (similar to the hardlink in UNIX)
Google Calendar (Web)
https://support.google.com/calendar/answer/37034?hl=en
?
でリストされるので,それで確認.
Move around the calendar
- j/k or n/p: Change your calendar view to the next/previous date range
- r: Refresh your calendar
- t: Move to the current day
- +: Move to add a calendar section
- /: Put your cursor in the search box
- s: Go to the Settings page
Change your calendar view
- 1 or d: Day view
- 2 or w: Week view
- 3 or m: Month view
- 4 or x: Custom view
- 5 or a: Agenda view
Make changes to an event
- c: Create a new event
- e: See an event’s details
- Backspace or Delete: Delete an event
- z: Undo
- Ctrl + s (Windows): Save event (from the event details page)
- Esc: Return to calendar grid from an event details page
Google Photo (Web)
?
でリストされるので,それで確認.
- #: Delete or remove from album
- x: Select
Google Docs (Web)
C-/
でリストされるので,それで確認.
- Ctrl-Alt-1: Heading 1 (数字は6まで)
- Ctrl-Alt-0: Normal text
- Ctrl-Shift-7: Numbered list
- Ctrl-Shift-8: Bulleted list
Twitter (Web)
https://help.twitter.com/en/using-twitter/how-to-tweet
?
でリストされるので,それで確認.
Navigation
- ? = full keyboard menu
- j = next Tweet
- k = previous Tweet
Google Chrome
https://support.google.com/chrome/answer/157179?hl=en
Open/Close
- C-n: open a new window
- C-t: open a new tab, and jump to it
- C-w: close the current tab
Navigation
- C-tab: jump to the next open tab
- C-S-tab: jump to the previous open tab (手元の環境だと右Shiftのみ効く)
- C-Pgdn: jump to the next open tab
- C-Pgup: jump to the previous open tab
- C-1 through C-8: jump to a specific tab
- C-9: jump to the rightmost tab
Zoom
- C-+: make everything on the page bigger (zoom in)
- C–: make everything on the page smaller (zoom out)
- C-0: return everything on the page to default size (zoom 100%)
Other
- C-u: view page source
- C-S-i: inspect (network)
- C-S-c: inspect (elements)
Vim (vi)
-
Replace (sample):
:,+2s/5/13/gc
-
Replace (
s
)5
by13
. -
Target lines (
,+2
): from the current line n to the line n + 2. In total, 3 lines.- This part is similar to the sed addresses.
%
(1,$
): corresponds to all lines.1,
: 1st line to the current line.,$
: the current line to the last line.1,-1
: 1st line to the previous line.
-
Flags
g
: All the matched words (parts) will be replaced.c
: Interactive mode (linequery-replace-regexp
in Emacs).
-
-
Show line numbers:
:set number
-
Indent:
>>
,<<
Emacs Magit
On magit-status
buffer.
- P: push
- F: pull
- R: move/rename (note that magit does not support for git rm)
Emacs Dired
http://www.math.s.chiba-u.ac.jp/~matsu/emacs/emacs21/dired.html
Remove files
- d: dired-flag-file-deletion
- % d: dired-flag-files-regexp
- x: dired-do-flagged-delete
- D: dired-do-delete (mark したファイルがあればそれらを削除,なければ現在のカーソル位置に対応するファイルを削除; 他のアクションもたいてい同様)
Mark
- m: dired-mark
- u: dired-unmark
- % m: dired-mark-files-regexp
- * %: dired-mark-files-regexp
- * .: dired-mark-extension (拡張子で mark)
- * *: dired-mark-executables
- * !: dired-unmark-all-marks
- U: dired-unmark-all-marks
Others
- R: dired-do-rename
- s: dired-sort-toggle-or-edit (日付ソートかファイル名ソートか)
- C-u s で sort の
ls
option を指定可能(-S
でサイズ順にするとか-r
で逆順にするとか,-h
で size 表示をhuman-readable
にするとか)
- C-u s で sort の
- g: revert-buffer (リフレッシュ,再読込み)
Emacs shell-script mode
See f1-m
or M-x describe-mode
in shells-cript-mode
enabled buffer.
Template insertions:
- C-c C-c case statement
- C-c C-f for loop
- C-c ( function definition
- C-c TAB if statement
- C-c C-l indexed loop from 1 to n
- C-c C-o while getopts loop
- C-c C-r repeat loop
- C-c C-s select loop
- C-c C-u until loop
- C-c C-w while loop
- C-c : Set this buffer’s shell, and maybe its magic number. (insert shebang)
Navigations:
- M-e Go to end of successive commands.
- M-a Go to beginning of successive commands.
Execution:
- C-M-x Have optional header and region be executed in a subshell.
Emacs Twittering-mode
(define-key km (kbd "C-c C-f") 'twittering-friends-timeline)
(define-key km (kbd "C-c C-r") 'twittering-replies-timeline)
(define-key km (kbd "C-c C-n") 'twittering-mentions-timeline)
(define-key km (kbd "C-c C-u") 'twittering-user-timeline)
(define-key km (kbd "C-c C-q") 'twittering-search)
(define-key km (kbd "C-c C-s") 'twittering-update-status-interactive)
(define-key km (kbd "u") 'twittering-update-status-interactive)
(define-key km (kbd "r") 'twittering-toggle-show-replied-statuses)
(define-key km (kbd "i") 'twittering-icon-mode)
(define-key km (kbd "a") 'twittering-toggle-activate-buffer)
(define-key km (kbd "v") 'twittering-other-user-timeline)
(define-key km (kbd "q") 'twittering-kill-buffer)
(define-key km (kbd "=") 'twittering-display-user-information)
- post a tweet:
twittering-update-status-interactive
. - farovite:
twittering-favorite
(no default shotcut).
Emacs markdown-mode
Editing Subtrees:
C-c UP
,C-c DOWN
,C-c LEFT
, andC-c RIGHT
: ブロックの上下移動と,レベル調整
Shifting the Region:
C-c <
andC-c >
: レベル調整
Outline Navigation:
C-c C-n
,C-c C-p
,C-c C-f
,C-c C-b
, andC-c C-u
Emacs (Advanced)
- Insert the output of shell command into emacs buffer
C-u M-! <shell-command>
M-! <shell-command>
: just displays the output at minibuffer.
LibreOffice Calc
- Alt-→: widen column width
- Alt-←: narrow column width
Undo/Redo/Repeat
- Undo: Ctrl-Z
- Redo: Ctrl-Y (Reverses the action of the last Undo command)
- Repeat: Shift-Ctrl-Y (Available in Writer and Calc)
Windows File Explorer
-
Ctrl-Shift-6: Layout を details に
実際には Ctrl-Shift- のあとは 1-8 のキーが使える (それぞれの Layout に対応)
https://www.intowindows.com/keyboard-shortcuts-to-change-file-explorer-view-in-windows-10/
- Ctrl + Shift + 1 Extra-large icons
- Ctrl + Shift + 2 Large icons
- Ctrl + Shift + 3 Medium icons
- Ctrl + Shift + 4 Small icons
- Ctrl + Shift + 5 List view
- Ctrl + Shift + 6 Details view ★
- Ctrl + Shift + 7 Tiles
- Ctrl + Shift + 8 Content
-
Ctrl-F1: Toggle ribbon
-
Alt-p: Toggle preview pane (for PDF files and so forth)
(Preview 状態はファイルを開いていることになったりするので,USBドライブの場合注意)
-
Alt-d / Ctrl-l: focus address bar
-
Alt-1, Alt-Enter: show property
-
Alt-2, Ctrl-Shift-n: new folder
-
Alt + ↑: upper folder
-
Alt + ←: previous folder
-
Alt + →: next folder
-
Alt v n Enter: toggle navigation pane
Windows 10
- Win-e: File Explorer
- Win-m: Show desktop
- Win-v: クリップボード履歴参照
- Win-Shift-s: Snip & Sketch
- Win+上下: Window 最大⇔最小
- 最大,標準ウインドウサイズ,最小化,をトグル
- Win+左右: Window 左⇔右
- 左右2分割左,右,標準ウインドウサイズ,をトグル
- Ctrl-Alt-矢印: 画面回転(Let’s Note CF-AX2)
- Ctrl-Win-(←|→): デスクトップ移動
- Win-tab: デスクトップ一覧
- Win-Ctrl-d: デスクトップ作成
- Win-Ctrl-F4: デスクトップ Close
- Win-shift-S: snipping tool
- Alt-space: Window menu
- Ctrl+Esc: Windows key
Navigation
- Based on the order in the taskbar
- Win-Num: switch task
- Win-Alt-Num: taskbar menu for each task
- Win-Shift-Num: new window for each task
- Alt-tab: task swicher
- Alt-ctrl-tab: task swicher (with cursor)
Zoom
- Win - + : Zoom
- Ctrl+Alt+L : lens
- Ctrl+Alt+D : docked
- Ctrl+Alt+F : fullscreen
- Win - + : zoom in
- Win - - : zoom out
- Win - ESC : quit zoom
https://www.cnet.com/how-to/how-to-use-multiple-desktops-in-windows-10/