Skip to content

Commit

Permalink
feat(list): sections are divided with a newline
Browse files Browse the repository at this point in the history
  • Loading branch information
olets committed Mar 1, 2020
1 parent c2cd606 commit 055e378
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 4 deletions.
8 changes: 8 additions & 0 deletions ROADMAP.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down Expand Up @@ -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
Expand Down
11 changes: 7 additions & 4 deletions zsh-abbr.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -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}
}

Expand Down

0 comments on commit 055e378

Please sign in to comment.