This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#cVim-link-container, .cVim-link-hint, #cVim-command-bar, #cVim-command-bar-mode, #cVim-command-bar-input, #cVim-command-bar-search-results, .cVim-completion-item, .cVim-completion-item .cVim-full, .cVim-completion-item .cVim-left, .cVim-completion-item .cVim-right, #cVim-hud, #cVim-status-bar { | |
font-family: "Triplicate T4p"; | |
font-size: 17px !important; | |
-webkit-font-smoothing: antialiased !important; | |
} | |
#cVim-link-container { | |
position: absolute; | |
pointer-events: none; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// vim:set et sw=4 ts=4 ft=javascript fdm=marker fml=1 fdls=1 : | |
//example from https://gist.githubusercontent.com/brookhong/755982e0014004207849f6e357af56f3/raw/777f62deb54098d82070e1e05dc86f9a798a29a1/gistfile1.txt | |
mapkey('<Ctrl-y>', 'Show me the money', function() { | |
Front.showPopup('a well-known phrase uttered by characters in the 1996 film Jerry Maguire (Escape to close).'); | |
}); | |
map('<Ctrl-f>', '2d'); | |
// map('<Alt-l>', 'R'); | |
// map('<Alt-h>', 'E'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
https://blog.csdn.net/faithsws/article/details/17160645 | |
https://blog.csdn.net/faithsws/article/details/17160645?utm_source=blogxgwz3 | |
https://blog.csdn.net/faithsws/article/details/17220539?utm_source=blogxgwz5 | |
https://blog.csdn.net/faithsws/article/details/17245699?utm_source=blogxgwz7 | |
https://blog.csdn.net/faithsws/article/details/17277865?utm_source=blogxgwz6 | |
https://blog.csdn.net/faithsws/article/details/17413959?utm_source=blogxgwz9 | |
https://blog.csdn.net/internet_of_things/article/details/17711177?utm_source=blogxgwz3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The Dude abides. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// an example to create a new mapping `ctrl-y` | |
api.mapkey('<ctrl-y>', 'Show me the money', function() { | |
Front.showPopup('a well-known phrase uttered by characters in the 1996 film Jerry Maguire (Escape to close).'); | |
}); | |
// an example to replace `T` with `gt`, click `Default mappings` to see how `T` works. | |
api.map('gt', 'T'); | |
api.map('<Ctrl-f>', '2d'); | |
api.map('<Ctrl-b>', '2e'); |