From 055e3789ab7f6ffbd4b2be6963cd80eaf44f4b76 Mon Sep 17 00:00:00 2001 From: Henry Bley-Vroman Date: Thu, 27 Feb 2020 21:51:20 -0500 Subject: [PATCH] feat(list): sections are divided with a newline --- ROADMAP.md | 8 ++++++++ zsh-abbr.zsh | 11 +++++++---- 2 files changed, 15 insertions(+), 4 deletions(-) diff --git a/ROADMAP.md b/ROADMAP.md index ffdf26e3..05eac146 100644 --- a/ROADMAP.md +++ b/ROADMAP.md @@ -1,8 +1,12 @@ # ROADMAP +Key: + - [x] checked is completed - [ ] unchecked is to-do +--- + ## ASAP - [ ] Identify someone who contributors can contact if olets violates the code of conduct (note: not looking for volunteers) @@ -55,6 +59,10 @@ Look like zsh's `alias` not fish's `abbr` ## 3.x +Github + +- [ ] move contribution documentation to a CONTRIBUTING.md + Chrome - [ ] Completion diff --git a/zsh-abbr.zsh b/zsh-abbr.zsh index 77b7dc48..e22a670d 100755 --- a/zsh-abbr.zsh +++ b/zsh-abbr.zsh @@ -328,13 +328,16 @@ _zsh_abbr() { source "${TMPDIR:-/tmp}/zsh-user-abbreviations" - echo "user global\\n" + echo "User global abbreviations:\\n" print -l ${(k)ZSH_ABBR_USER_GLOBALS} - echo "user regular\\n" + echo + echo "User regular abbreviations\\n" print -l ${(k)ZSH_ABBR_USER_COMMANDS} - echo "session global\\n" + echo + echo "Session global abbreviations\\n" print -l ${(k)ZSH_ABBR_SESSION_GLOBALS} - echo "session regular\\n" + echo + echo "Session regular abbreviations\\n" print -l ${(k)ZSH_ABBR_SESSION_COMMANDS} }