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
syntax on | |
if has("gui_running") | |
set guifont=Iosevka\ Curly:h12 | |
set guioptions-=m | |
set guioptions-=T | |
set guioptions-=r | |
endif |
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
(defun split-str (string &optional (separator " ")) | |
(split-str-1 string separator)) | |
(defun split-str-1 (string &optional (separator " ") (r nil)) | |
(let ((n (position separator string | |
:from-end t | |
:test #'(lambda (x y) | |
(find y x :test #'string=))))) | |
(if n | |
(split-str-1 (subseq string 0 n) separator (cons (subseq string (1+ n)) r)) |