- tsukkee
As you know, the world most powerful editor!!
But, note that, to use vim efficiently:
function! Generator() | |
function! Inner1(value) closure | |
let i = a:value | |
function! Inner2(value) closure | |
let i += a:value | |
function! Inner3(value) closure | |
let i += a:value | |
function! Inner4(value) closure | |
let i += a:value | |
return {'value': i, 'done': v:true} |
#include <stdlib.h> | |
#include <stdio.h> | |
#include <curses.h> | |
int main() { | |
WINDOW* mainwin; | |
if ((mainwin = initscr()) == NULL) { | |
fprintf(stderr, "Error initialsing ncurses.\n"); | |
exit(EXIT_FAILURE); |
require 'vcard' | |
require 'nkf' | |
file = open(ARGV[0], 'r') | |
vcard = Vcard::Vcard.decode(file) | |
def to_hiragane(katakana) | |
NKF.nkf('-w --hiragana', katakana) | |
end |
let g:vim_lsp_settings_volar_options = #{ | |
\ typescript: #{ | |
\ serverPath: "/path/to/node_modules/typescript/lib/tsserverlibrary.js", | |
\ }, | |
\ languageFeatures: #{ | |
\ references: #{ enabledInTsScript: v:true }, | |
\ definition: v:true, | |
\ typeDefinition: v:true, | |
\ callHierarchy: v:true, | |
\ hover: v:true, |