Skip to content

Commit

Permalink
Merge branch 'aaronlna-fix-unknown-file-attribute-error'
Browse files Browse the repository at this point in the history
  • Loading branch information
subnixr committed Jun 5, 2018
2 parents ffaca85 + 67edfc5 commit 9dd104f
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions minimal.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,8 @@ function mnml_me_git {
# Wrappers & utils
# join outpus of components
function _mnml_wrap {
local arr=()
local -a arr
arr=()
local cmd_out=""
local cmd
for cmd in ${(P)1}; do
Expand All @@ -183,7 +184,8 @@ function _mnml_iline {

# display magic enter
function _mnml_me {
local output=()
local -a output
output=()
local cmd_out=""
local cmd
for cmd in $MNML_MAGICENTER; do
Expand Down Expand Up @@ -222,7 +224,8 @@ function _mnml_buffer-empty {
function _mnml_bind_widgets() {
zmodload zsh/zleparameter

local to_bind=(zle-line-init zle-keymap-select buffer-empty)
local -a to_bind
to_bind=(zle-line-init zle-keymap-select buffer-empty)

typeset -F SECONDS
local zle_wprefix=s$SECONDS-r$RANDOM
Expand Down

0 comments on commit 9dd104f

Please sign in to comment.