forked from honza/vim-snippets
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
64 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
# Some useful Unicode entities | ||
# ============================ | ||
# Non-Breaking Space | ||
snippet nbs | ||
| ||
# ← | ||
snippet left | ||
← | ||
# → | ||
snippet right | ||
→ | ||
# ↑ | ||
snippet up | ||
↑ | ||
# ↓ | ||
snippet down | ||
↓ | ||
# ↩ | ||
snippet return | ||
↩ | ||
# ⇤ | ||
snippet backtab | ||
⇤ | ||
# ⇥ | ||
snippet tab | ||
⇥ | ||
# ⇧ | ||
snippet shift | ||
⇧ | ||
# ⌃ | ||
snippet ctrl | ||
⌃ | ||
# ⌅ | ||
snippet enter | ||
⌅ | ||
# ⌘ | ||
snippet cmd | ||
⌘ | ||
# ⌥ | ||
snippet option | ||
⌥ | ||
# ⌦ | ||
snippet delete | ||
⌦ | ||
# ⌫ | ||
snippet backspace | ||
⌫ | ||
# ⎋ | ||
snippet esc | ||
⎋ | ||
|
||
# Forms | ||
# ===== | ||
snippet fieldset | ||
fieldset | ||
legend ${1} | ||
|
||
# Assets | ||
# ====== | ||
snippet css | ||
link rel="stylesheet" href="${1:style.css}" type="text/css" media="${2:all}" | ||
|
||
snippet script | ||
script src="${1:script.js}" type="text/javascript" |