All Projects â†’ junegunn â†’ Vim Emoji

junegunn / Vim Emoji

😃 Emoji in Vim

vim-emoji

Emoji in Vim.

Extracted from vim-github-dashboard.

Installation

Using vim-plug:

Plug 'junegunn/vim-emoji'

List of functions

  • emoji#for(name[, default = '', pad = 1])
  • emoji#list()
  • emoji#complete(findstart, base)

Examples

Using Emojis as Git Gutter symbols

let g:gitgutter_sign_added = emoji#for('small_blue_diamond')
let g:gitgutter_sign_modified = emoji#for('small_orange_diamond')
let g:gitgutter_sign_removed = emoji#for('small_red_triangle')
let g:gitgutter_sign_modified_removed = emoji#for('collision')

Append Emoji list to current buffer

for e in emoji#list()
  call append(line('$'), printf('%s (%s)', emoji#for(e), e))
endfor

Emoji completion

set completefunc=emoji#complete

Replace :emoji_name: into Emojis

%s/:\([^:]\+\):/\=emoji#for(submatch(1), submatch(0))/g
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].