Skip to content

Commit

Permalink
1.37.1
Browse files Browse the repository at this point in the history
  • Loading branch information
dorian-marchal committed Sep 1, 2019
1 parent 6d17371 commit 82e9f4a
Show file tree
Hide file tree
Showing 10 changed files with 350 additions and 215 deletions.
46 changes: 27 additions & 19 deletions extensions.txt
@@ -1,40 +1,48 @@
abusaidm.html-snippets@0.2.1
alefragnani.Bookmarks@10.2.2
amatiasq.sort-imports@6.0.1
bierner.emojisense@0.4.1
bierner.markdown-emoji@0.0.7
bierner.markdown-preview-github-styles@0.1.4
bmewburn.vscode-intelephense-client@1.0.8
alefragnani.Bookmarks@10.5.0
amatiasq.sort-imports@6.1.0
bierner.emojisense@0.5.1
bierner.markdown-emoji@0.0.9
bierner.markdown-preview-github-styles@0.1.6
bladnman.auto-align@0.0.13
bmarkovic.haproxy@0.1.2
bmewburn.vscode-intelephense-client@1.2.2
BriteSnow.vscode-toggle-quotes@0.3.2
cerzat43.twigcs@0.4.2
dbaeumer.vscode-eslint@1.8.2
denco.confluence-markup@0.1.4
cerzat43.twigcs@1.1.0
clinyong.vscode-css-modules@0.2.3
CoenraadS.bracket-pair-colorizer-2@0.0.28
dbaeumer.vscode-eslint@1.9.1
denco.confluence-markup@0.1.7
dorian-marchal.add-line-break@0.0.1
eamodio.gitlens@9.5.1
eamodio.gitlens@9.9.3
EditorConfig.EditorConfig@0.13.0
esbenp.prettier-vscode@1.8.1
esbenp.prettier-vscode@2.2.2
formulahendry.auto-close-tag@0.5.6
formulahendry.auto-rename-tag@0.0.15
formulahendry.auto-rename-tag@0.1.0
ikappas.phpcs@1.0.5
ionceflorin.copy-current-file-path@0.0.2
joelday.docthis@0.7.1
liximomo.sftp@1.10.0
mblode.twig-language-2@0.6.2
liximomo.sftp@1.12.8
mblode.twig-language-2@0.8.10
mikeburgh.xml-format@1.0.2
neilbrayfield.php-docblocker@1.8.0
nemesv.copy-file-name@1.0.0
mrmlnc.vscode-apache@1.2.0
neilbrayfield.php-docblocker@2.0.1
nemesv.copy-file-name@1.2.0
persoderlind.vscode-phpcbf@0.0.8
pflannery.vscode-versionlens@0.22.0
pflannery.vscode-versionlens@0.24.0
ricard.postcss@2.0.0
robinbentley.sass-indented@1.5.1
RoscoP.ActiveFileInStatusBar@1.0.3
sleistner.vscode-fileutils@2.13.5
sleistner.vscode-fileutils@2.14.9
stkb.rewrap@1.9.1
sysoev.vscode-open-in-github@1.12.0
techer.open-in-browser@2.0.0
toba.vsfire@1.4.1
tomoki1207.selectline-statusbar@0.0.2
Tyriar.sort-lines@1.8.0
vilicvane.es-quotes@0.2.6
wayou.vscode-todo-highlight@1.0.4
whatwedo.twig@1.0.2
wmaurer.change-case@1.0.0
ybaumes.highlight-trailing-white-spaces@0.0.2
yzhang.markdown-all-in-one@2.1.1
yzhang.markdown-all-in-one@2.4.2
Binary file modified globalStorage/state.vscdb
Binary file not shown.
71 changes: 70 additions & 1 deletion keybindings.json
Expand Up @@ -445,7 +445,8 @@
},
{
"key": "ctrl+shift+q",
"command": "esQuotes.transformBetweenQuotes"
"command": "esQuotes.transformBetweenQuotes",
"when": "\"editorLangId == javascript\""
},
{
"key": "ctrl+m",
Expand Down Expand Up @@ -582,5 +583,73 @@
"key": "alt+w",
"command": "-gitlens.diffLineWithWorking",
"when": "editorTextFocus && config.gitlens.keymap == 'alternate' && gitlens:activeFileStatus =~ /tracked/"
},
{
"key": "ctrl+shift+i",
"command": "-emojisense.quickEmojitext",
"when": "editorTextFocus"
},
{
"key": "ctrl+shift+alt+i",
"command": "-emojisense.quickEmojitextTerminal",
"when": "terminalFocus"
},
{
"key": "ctrl+i",
"command": "-emojisense.quickEmoji",
"when": "editorTextFocus"
},
{
"key": "ctrl+alt+i",
"command": "-emojisense.quickEmojiTerminal",
"when": "terminalFocus"
},
{
"key": "ctrl+shift+q",
"command": "editor.togglequotes",
"when": "\"editorLangId != javascript\""
},
{
"key": "alt+enter",
"command": "editor.action.openLink"
},
{
"key": "alt+k",
"command": "editor.emmet.action.incrementNumberByOne"
},
{
"key": "alt+j",
"command": "editor.emmet.action.decrementNumberByOne"
},
{
"key": "ctrl+e",
"command": "bracket-pair-colorizer-2.expandBracketSelection"
},
{
"key": "ctrl+e",
"command": "-workbench.action.quickOpen"
},
{
"key": "ctrl+3",
"command": "markdown.extension.editing.toggleHeadingUp",
"when": "editorLangId == 'markdown'"
},
{
"key": "ctrl+shift+3",
"command": "markdown.extension.editing.toggleHeadingDown",
"when": "editorLangId == 'markdown'"
},
{
"key": "ctrl+shift+y",
"command": "-workbench.debug.action.toggleRepl"
},
{
"key": "ctrl+shift+y",
"command": "workbench.action.terminal.focus"
},
{
"key": "ctrl+shift+y",
"command": "workbench.action.focusActiveEditorGroup",
"when": "terminalFocus"
}
]

0 comments on commit 82e9f4a

Please sign in to comment.