Add matchBrackets, hack a better solution to semi-colon/colon remap. It's all working a bit better!
This commit is contained in:
parent
1792ebd08e
commit
17d9f6f736
@ -8,6 +8,7 @@
|
|||||||
<script src="addon/dialog/dialog.js"></script>
|
<script src="addon/dialog/dialog.js"></script>
|
||||||
<script src="addon/search/searchcursor.js"></script>
|
<script src="addon/search/searchcursor.js"></script>
|
||||||
<script src="mode/markdown/markdown.js"></script>
|
<script src="mode/markdown/markdown.js"></script>
|
||||||
|
<script src="addon/edit/matchbrackets.js"></script>
|
||||||
<script src="keymap/vim.js"></script>
|
<script src="keymap/vim.js"></script>
|
||||||
<style type="text/css">
|
<style type="text/css">
|
||||||
.CodeMirror {
|
.CodeMirror {
|
||||||
@ -28,13 +29,13 @@
|
|||||||
mode: "markdown",
|
mode: "markdown",
|
||||||
lineNumbers: "true",
|
lineNumbers: "true",
|
||||||
keyMap: "vim",
|
keyMap: "vim",
|
||||||
|
matchBrackets: true,
|
||||||
showCursorWhenSelecting: true,
|
showCursorWhenSelecting: true,
|
||||||
viewportMargin: Infinity
|
viewportMargin: Infinity
|
||||||
});
|
});
|
||||||
// Add my .vimrc stuff.
|
// Add my .vimrc stuff.
|
||||||
CodeMirror.Vim.map('jj', '<Esc>', 'insert')
|
CodeMirror.Vim.map('jj', '<Esc>', 'insert')
|
||||||
CodeMirror.Vim.map(';', ':')
|
// Hacked semi-colon/colon swap remap into /assets/keymap/vim.js...kind of a heavy hammer might bite me later.
|
||||||
CodeMirror.Vim.map(':', ';')
|
|
||||||
// This no worky, there's no concept of <leader> in CodeMirror, but i was hoping this would work-around it.
|
// This no worky, there's no concept of <leader> in CodeMirror, but i was hoping this would work-around it.
|
||||||
//CodeMirror.Vim.map(' c', '<Esc>o- [ ] ', 'normal')
|
//CodeMirror.Vim.map(' c', '<Esc>o- [ ] ', 'normal')
|
||||||
//CodeMirror.Vim.map(' x', '<ESC>;s/\[\s\]/[x]/g<CR>;noh<CR>', 'normal')
|
//CodeMirror.Vim.map(' x', '<ESC>;s/\[\s\]/[x]/g<CR>;noh<CR>', 'normal')
|
||||||
@ -43,12 +44,12 @@
|
|||||||
var keys = ''
|
var keys = ''
|
||||||
CodeMirror.on(editor, 'vim-keypress', function(key) {
|
CodeMirror.on(editor, 'vim-keypress', function(key) {
|
||||||
keys = keys + key
|
keys = keys + key
|
||||||
commandDisplay.innerHTML = keys
|
commandDisplay.innerHTML = keys;
|
||||||
})
|
});
|
||||||
CodeMirror.on(editor, 'vim-command-done', function(e) {
|
CodeMirror.on(editor, 'vim-command-done', function(e) {
|
||||||
keys = ''
|
keys = '';
|
||||||
commandDisplay.innerHTML = keys
|
commandDisplay.innerHTML = keys;
|
||||||
})
|
});
|
||||||
|
|
||||||
var typingTimer;
|
var typingTimer;
|
||||||
editor.on("changes", function() {
|
editor.on("changes", function() {
|
||||||
|
Loading…
Reference in New Issue
Block a user