From 307dcac31ed317b9f8439bcb766fa599e6c4efa7 Mon Sep 17 00:00:00 2001 From: Joey Shi Date: Sun, 30 Oct 2022 23:29:28 -0700 Subject: very cool vimscript --- entries/joeyshi12/vimscript/fib.vim | 28 ++++++++++++++++++++++++++++ people.json | 13 ++++++++++++- 2 files changed, 40 insertions(+), 1 deletion(-) create mode 100644 entries/joeyshi12/vimscript/fib.vim diff --git a/entries/joeyshi12/vimscript/fib.vim b/entries/joeyshi12/vimscript/fib.vim new file mode 100644 index 0000000..b385049 --- /dev/null +++ b/entries/joeyshi12/vimscript/fib.vim @@ -0,0 +1,28 @@ +" Add me to your .vimrc :] + +function! Fib(n) + if a:n == 0 + return "0" + elseif a:n == 1 + return "0,1" + endif + let sequence = "0,1" + let prev = 0 + let curr = 1 + let iter = 2 + while iter <= a:n + let curr = prev + curr + let prev = curr - prev + let sequence .= "," . curr + let iter += 1 + endwhile + return sequence +endfunction + +function! AppendFib(n) + execute "normal! i" . Fib(a:n) . "\" +endfunction + +" Map AppendFib to \fib +:command! -nargs=1 AppendFib :call AppendFib() +nnoremap fib :AppendFib diff --git a/people.json b/people.json index 990e755..f94b452 100644 --- a/people.json +++ b/people.json @@ -608,5 +608,16 @@ "link": "./entries/timstr/fib.cpp" } ] - } + }, + { + "github": "joeyshi12", + "name": "Joey Shi", + "title": "MSc, UBC", + "entries": [ + { + "name": "vim", + "link": "./entries/joeyshi12/vimscript/fib.vim" + } + ] + } ] -- cgit v1.2.3-70-g09d2