1c0e66191283

no rly
[view raw] [browse files]
author Steve Losh <steve@stevelosh.com>
date Tue, 02 Jul 2013 16:48:02 -0700
parents 1b974520d9d7
children 4ddd1c8ca46c
branches/tags (none)
files vim/after/plugin/fireplace-map-unfucking.vim vim/ftplugin/clojure/folding.vim

Changes

--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/vim/after/plugin/fireplace-map-unfucking.vim	Tue Jul 02 16:48:02 2013 -0700
@@ -0,0 +1,59 @@
+" These are all out here in the middle of goddamned nowhere because Fireplace is
+" an asshole and won't let you disable mappings like any other plugin.
+
+augroup unmap_fireplace_bullshit
+    au!
+
+    au Filetype clojure nunmap <buffer> cp
+    au Filetype clojure nunmap <buffer> cpp
+
+    au Filetype clojure nunmap <buffer> c!
+    au Filetype clojure nunmap <buffer> c!!
+
+    au Filetype clojure nunmap <buffer> cq
+    au Filetype clojure nunmap <buffer> cqq
+
+    au Filetype clojure nunmap <buffer> cqp
+    au Filetype clojure nunmap <buffer> cqc
+
+    au Filetype clojure nunmap <buffer> cpr
+
+    au Filetype clojure nunmap <buffer> K
+    au Filetype clojure nunmap <buffer> [d
+    au Filetype clojure nunmap <buffer> ]d
+
+    au Filetype clojure nunmap <buffer> [<c-d>
+    au Filetype clojure nunmap <buffer> ]<c-d>
+
+    au Filetype clojure nunmap <buffer> <c-w><c-d>
+    au Filetype clojure nunmap <buffer> <c-w>d
+    au Filetype clojure nunmap <buffer> <c-w>gd
+augroup END
+
+augroup map_good_fireplace_keys
+    au!
+
+    " [M]an (get documentation)
+    au Filetype clojure nmap <buffer> M <Plug>FireplaceK
+
+    " Go to Definition
+    au Filetype clojure nmap <buffer> gd <Plug>FireplaceDjump
+
+    " Require
+    au Filetype clojure nnoremap <buffer> <localleader>r :Require<cr>
+
+    " Require Harder
+    au Filetype clojure nnoremap <buffer> <localleader>R :Require!<cr>
+
+    " Get [S]ource
+    au Filetype clojure nmap <buffer> <localleader>s <Plug>FireplaceSource
+
+    " Eval Form
+    " au Filetype clojure nmap <buffer> <localleader>ef
+
+    " Eval Top-Level Form
+    " au Filetype clojure nmap <buffer> <localleader>ee
+
+    " Open clojure command line editor client thing
+    " au Filetype clojure nmap <buffer> <localleader>E
+augroup END
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/vim/ftplugin/clojure/folding.vim	Tue Jul 02 16:48:02 2013 -0700
@@ -0,0 +1,128 @@
+if exists('loaded_clojurefolding') || &cp
+    finish
+endif
+let loaded_clojurefolding=1
+
+let folded_forms = [
+            \ 'def',
+            \ 'defn',
+            \ 'defn-',
+            \ 'defform',
+            \ 'defform-',
+            \ 'defrule',
+            \ 'defprotocol',
+            \ 'defparser',
+            \ 'defmacro',
+            \ 'defmethod',
+            \ 'defmulti',
+            \ 'defonce',
+            \ 'defpage',
+            \ 'defmigration',
+            \ 'defsketch',
+            \ 'defspec',
+            \ 'defremote',
+            \ 'defrecord',
+            \ 'defrec',
+            \ 'defpartial',
+            \ 'extend-type',
+            \ 'extend-protocol',
+            \ 'defgauge',
+            \ 'defmeter',
+            \ 'defhistogram',
+            \ 'defcounter',
+            \ 'deftimer',
+            \ 'deftest',
+            \ 'defroutes',
+            \ 'defentity',
+            \ 'defaspect',
+            \ 'add-aspect',
+            \ 'defdb',
+            \ 'defproject',
+            \ 'defsynth',
+            \ 'definst',
+            \ 'ns'
+            \ ]
+let s:form_re      = '\v^\((' . join(folded_forms, '|') . ')\s'
+let s:form_re_bare = '\v^\((' . join(folded_forms, '|') . ')$'
+
+function! s:NextNonBlankLineContents(start)
+    let lnum = a:start
+    let max = line("$")
+
+    while 1
+        let lnum += 1
+
+        " If we've run off the end of the file, return a blank string as
+        " a sentinel.
+        if lnum > max
+            return ""
+        endif
+
+        " Otherwise, get the contents.
+        let contents = getline(lnum)
+
+        " If they're non-blank, return it.  Otherwise we'll loop to the next
+        " line.
+        if contents =~ '\v\S'
+            return contents
+        endif
+    endwhile
+endfunction
+
+function! GetClojureFold()
+    let line = getline(v:lnum)
+
+    if line =~ s:form_re || line =~ s:form_re_bare
+        " We're on one of the forms we want to fold.
+
+        let nextline = s:NextNonBlankLineContents(v:lnum)
+
+        " If we've run off the end of the file, this means we're on a top-level
+        " form with no later nonblank lines in the file.  This has to be a one
+        " liner, because there's no content left that could be closing parens!
+        if nextline == ""
+            return 0
+        elseif nextline =~ '\v^\s+'
+            " If it's indented, this almost certainly isn't a one-liner.  Fold
+            " away!
+            return ">1"
+        else
+            " Otherwise, the next non-blank line after this one is not
+            " indented.  This means we're on a one-liner, so we don't want to
+            " fold.
+            return 0
+        endif
+    elseif line =~ '^\s*$'
+        " We need to look at the next non-blank line to determine how to fold
+        " blank lines.
+        let nextline = s:NextNonBlankLineContents(v:lnum)
+
+        " If we've run off the end of the file, this means we're on one of
+        " a series of blank lines ending the file.  They shouldn't be folded
+        " with anything.
+        if nextline == ""
+            return 0
+        elseif nextline =~ '\v^\s+'
+            " If it's indented, we're in the middle of an existing form.
+            " Just fold with that.
+            return "="
+        else
+            " Otherwise, the next non-blank line after this one is not
+            " indented.  That means we need to close any existing folds
+            " here.
+            return "<1"
+        endif
+    elseif line =~ '\v^\s+\S'
+        " Indented content, fold it into any existing folds.
+        return "="
+    else
+        " We are sitting on a non-blank, non-indented line, but it's not one of
+        " our special top-level forms, so we'll just leave it alone.
+        return 0
+    endif
+endfunction
+
+function! TurnOnClojureFolding()
+    setlocal foldexpr=GetClojureFold()
+    setlocal foldmethod=expr
+endfunction