Skip to content

Unicode lambdas and such for clojure using Vim's conceal feature

License

Notifications You must be signed in to change notification settings

honza/vim-clojure-conceal

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 

Repository files navigation

Vim Clojure Conceal

Add some unicode goodness to your Clojure files. defn becomes ƒ and fn becomes λ.

For example:

(defn square [x]
  (* x x))

(def square
  (fn [x]
    (* x x)))

becomes:

(ƒ square [x]
  (* x x))

(def square
  (λ [x]
    (* x x)))

Installation

Drop clojure.vim to ~/.vim/after/syntax (Linux/Mac OS X/BSD) or ~/vimfiles/after/syntax folder (Windows). Or install with pathogen or vundle in the usual way.

License

BSD, short and sweet.

Credit

Original version by Filip Wolanski

About

Unicode lambdas and such for clojure using Vim's conceal feature

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Vim Script 100.0%