All Projects → alexherbo2 → snippet.kak

alexherbo2 / snippet.kak

Licence: Unlicense license
Snippets integration for Kakoune

Projects that are alternatives of or similar to snippet.kak

kakoune-snippets
Snippet support for kakoune
Stars: ✭ 35 (+52.17%)
Mutual labels:  snippets, kakoune
SimpleSnippets.vim
Simple snippet support for your Vim and Neovim
Stars: ✭ 86 (+273.91%)
Mutual labels:  snippets
FortranTip
Short instructional Fortran codes associated with Twitter @FortranTip
Stars: ✭ 39 (+69.57%)
Mutual labels:  snippets
odin-vscode
Odin syntax highlighting and snippets for Code.
Stars: ✭ 17 (-26.09%)
Mutual labels:  snippets
one.kak
Atom "One" color schemes for Kakoune.
Stars: ✭ 19 (-17.39%)
Mutual labels:  kakoune
chalkboard
Share your code and collaborate with developers around the world.
Stars: ✭ 30 (+30.43%)
Mutual labels:  snippets
30-seconds-of-python
Short Python code snippets for all your development needs
Stars: ✭ 8,452 (+36647.83%)
Mutual labels:  snippets
vscode-R
R Extension for Visual Studio Code
Stars: ✭ 788 (+3326.09%)
Mutual labels:  snippets
VscOdooSnippets
Odoo Snippets for Visual Studio Code
Stars: ✭ 29 (+26.09%)
Mutual labels:  snippets
rocketnative-sublime-snippets
[DEPRECATED] Rocketseat React Native snippets for Sublime Text Editor
Stars: ✭ 16 (-30.43%)
Mutual labels:  snippets
LuaSnip
Snippet Engine for Neovim written in Lua.
Stars: ✭ 1,196 (+5100%)
Mutual labels:  snippets
Cpp-Data-Structures
📐 C++ Implementations of data structures & algorithms from PSU course CS162/CS163
Stars: ✭ 19 (-17.39%)
Mutual labels:  snippets
clara-copilot
A alternative to Github Copilot for vscode until you get the access to github copilot
Stars: ✭ 206 (+795.65%)
Mutual labels:  snippets
CodeView
Android Library to make it easy to create an Code editor or IDE that support any languages and themes, with auto complete, auto indenting, snippets and more features
Stars: ✭ 254 (+1004.35%)
Mutual labels:  snippets
auto-pairs.kak
Auto-pairing of characters for Kakoune
Stars: ✭ 62 (+169.57%)
Mutual labels:  kakoune
atom-perl6-editor-tools
A collection of useful Perl 6 editor tools
Stars: ✭ 19 (-17.39%)
Mutual labels:  snippets
Bulma-Snippets-Sublime-Text-Plugin
Bulma Snippets Sublime Text Plugin
Stars: ✭ 13 (-43.48%)
Mutual labels:  snippets
sublime-PICO-8
PICO-8 plugin for the Sublime Text 3 editor.
Stars: ✭ 42 (+82.61%)
Mutual labels:  snippets
javascript-interview-questions
A collection of JavaScript modern interview questions for beginners to experts
Stars: ✭ 290 (+1160.87%)
Mutual labels:  snippets
discrete-math-python-scripts
Python code snippets from Discrete Mathematics for Computer Science specialization at Coursera
Stars: ✭ 98 (+326.09%)
Mutual labels:  snippets

snippets.kak

Snippets integration for Kakoune.

Dependencies

Installation

Add snippets.kak to your autoload or source it manually.

require-module snippets

Usage

Enable snippets with snippets-enable.

Type / to bring the snippets completions, select a snippet in the list of completions and press Enter, or directly Alt + Enter to insert a snippet. You can quickly jump to the next placeholder with phantom.kak.

Configuration

Example

# Options
set-option global snippets_scope global global/arrows global/bullets global/dashes global/math global/punctuation

# Mappings
# Create new snippets
map -docstring 'Edit snippets' global user / ': snippets-edit<ret>'

# Optional auto-pairs integration
map -docstring 'Expand snippets' global insert <ret> '<a-;>: snippets-enter auto-pairs-insert-new-line<ret>'

# Hooks
# Indent snippets with tabs
hook global BufCreate '.+/\.?config/snippets/.+' %{
  set-option buffer indentwidth 0
}
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].