Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
O
oh-my-zsh
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
github
oh-my-zsh
Commits
587b5545
Commit
587b5545
authored
May 16, 2020
by
Marc Cornellà
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
zsh-navigation-tools: update to 5937e57e
Fixes #8476
parent
fd786291
Changes
7
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
354 additions
and
109 deletions
+354
-109
LICENSE
plugins/zsh-navigation-tools/LICENSE
+4
-4
Makefile
plugins/zsh-navigation-tools/Makefile
+35
-0
README.md
plugins/zsh-navigation-tools/README.md
+285
-98
_n-kill
plugins/zsh-navigation-tools/_n-kill
+3
-3
n-kill
plugins/zsh-navigation-tools/n-kill
+2
-2
n-list
plugins/zsh-navigation-tools/n-list
+2
-0
zsh-navigation-tools.plugin.zsh
plugins/zsh-navigation-tools/zsh-navigation-tools.plugin.zsh
+23
-2
No files found.
plugins/zsh-navigation-tools/LICENSE
View file @
587b5545
...
@@ -27,7 +27,7 @@ GPLv3 License
...
@@ -27,7 +27,7 @@ GPLv3 License
GNU GENERAL PUBLIC LICENSE
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Version 3, 29 June 2007
Copyright (C) 2007 Free Software Foundation, Inc. <http
s
://fsf.org/>
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies
Everyone is permitted to copy and distribute verbatim copies
of this license document, but changing it is not allowed.
of this license document, but changing it is not allowed.
...
@@ -671,7 +671,7 @@ the "copyright" line and a pointer to where the full notice is found.
...
@@ -671,7 +671,7 @@ the "copyright" line and a pointer to where the full notice is found.
GNU General Public License for more details.
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
You should have received a copy of the GNU General Public License
along with this program. If not, see <http
s
://www.gnu.org/licenses/>.
along with this program. If not, see <http://www.gnu.org/licenses/>.
Also add information on how to contact you by electronic and paper mail.
Also add information on how to contact you by electronic and paper mail.
...
@@ -690,11 +690,11 @@ might be different; for a GUI interface, you would use an "about box".
...
@@ -690,11 +690,11 @@ might be different; for a GUI interface, you would use an "about box".
You should also get your employer (if you work as a programmer) or school,
You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary.
if any, to sign a "copyright disclaimer" for the program, if necessary.
For more information on this, and how to apply and follow the GNU GPL, see
For more information on this, and how to apply and follow the GNU GPL, see
<http
s
://www.gnu.org/licenses/>.
<http://www.gnu.org/licenses/>.
The GNU General Public License does not permit incorporating your program
The GNU General Public License does not permit incorporating your program
into proprietary programs. If your program is a subroutine library, you
into proprietary programs. If your program is a subroutine library, you
may consider it more useful to permit linking proprietary applications with
may consider it more useful to permit linking proprietary applications with
the library. If this is what you want to do, use the GNU Lesser General
the library. If this is what you want to do, use the GNU Lesser General
Public License instead of this License. But first, please read
Public License instead of this License. But first, please read
<http
s
://www.gnu.org/philosophy/why-not-lgpl.html>.
<http://www.gnu.org/philosophy/why-not-lgpl.html>.
plugins/zsh-navigation-tools/Makefile
0 → 100644
View file @
587b5545
NAME
=
zsh-navigation-tools
INSTALL
?=
install
-c
PREFIX
?=
/usr/local
SHARE_DIR
?=
$(DESTDIR)$(PREFIX)
/share/
$(NAME)
DOC_DIR
?=
$(DESTDIR)$(PREFIX)
/share/doc/
$(NAME)
all
:
install
:
$(INSTALL)
-d
$(SHARE_DIR)
$(INSTALL)
-d
$(SHARE_DIR)
/.config
$(INSTALL)
-d
$(SHARE_DIR)
/.config/znt
$(INSTALL)
-d
$(DOC_DIR)
cp
zsh-navigation-tools.plugin.zsh _n-kill doc/znt-tmux.zsh
$(SHARE_DIR)
cp
README.md NEWS LICENSE doc/img/n-history2.png
$(DOC_DIR)
if
[
x
"true"
=
x
"
`
git rev-parse
--is-inside-work-tree
2>/dev/null
`
"
]
;
then
\
git rev-parse HEAD
;
\
else
\
cat
.revision-hash
;
\
fi
>
$(SHARE_DIR)
/.revision-hash
:
for
fname
in
n-
*
;
do
cp
"
$$
fname"
$(SHARE_DIR)
;
done
;
\
for
fname
in
znt-
*
;
do
cp
"
$$
fname"
$(SHARE_DIR)
;
done
;
\
for
fname
in
.config/znt/n-
*
;
do
cp
"
$$
fname"
$(SHARE_DIR)
/.config/znt
;
done
;
uninstall
:
rm
-f
$(SHARE_DIR)
/.revision-hash
$(SHARE_DIR)
/_
*
$(SHARE_DIR)
/zsh-
*
$(SHARE_DIR)
/n-
*
$(SHARE_DIR)
/znt-
*
$(SHARE_DIR)
/.config/znt/n-
*
[
-d
$(SHARE_DIR)
/.config/znt
]
&&
rmdir
$(SHARE_DIR)
/.config/znt
||
true
[
-d
$(SHARE_DIR)
/.config
]
&&
rmdir
$(SHARE_DIR)
/.config
||
true
[
-d
$(SHARE_DIR)
]
&&
rmdir
$(SHARE_DIR)
||
true
rm
-f
$(DOC_DIR)
/README.md
$(DOC_DIR)
/LICENSE
$(DOC_DIR)
/n-history2.png
[
-d
$(DOC_DIR)
]
&&
rmdir
$(DOC_DIR)
||
true
.PHONY
:
all install uninstall
plugins/zsh-navigation-tools/README.md
View file @
587b5545
This diff is collapsed.
Click to expand it.
plugins/zsh-navigation-tools/_n-kill
View file @
587b5545
...
@@ -10,8 +10,8 @@ integer cygwin=0
...
@@ -10,8 +10,8 @@ integer cygwin=0
local IFS="
local IFS="
"
"
case "$
OSTYPE
" in
case "$
(uname)
" in
cygwin
*) list=( `command ps -Wa` ); cygwin=1 ;;
CYGWIN
*) list=( `command ps -Wa` ); cygwin=1 ;;
*) list=( `command ps -o pid,uid,command -A` ) ;;
*) list=( `command ps -o pid,uid,command -A` ) ;;
esac
esac
...
@@ -36,6 +36,6 @@ for line in "${list[@]}"; do
...
@@ -36,6 +36,6 @@ for line in "${list[@]}"; do
done
done
_wanted bits expl "Processes' name bits" \
_wanted bits expl "Processes' name bits" \
compadd "$@" -a - words && ret=0
compadd
-M 'm:{a-z}={A-Z}'
"$@" -a - words && ret=0
return "$ret"
return "$ret"
plugins/zsh-navigation-tools/n-kill
View file @
587b5545
...
@@ -42,8 +42,8 @@ NLIST_NONSELECTABLE_ELEMENTS=( 1 )
...
@@ -42,8 +42,8 @@ NLIST_NONSELECTABLE_ELEMENTS=( 1 )
type
ps 2>/dev/null 1>&2
||
{
echo
>
&2
"Error:
\`
ps' not found"
;
return
1
}
type
ps 2>/dev/null 1>&2
||
{
echo
>
&2
"Error:
\`
ps' not found"
;
return
1
}
case
"
$
OSTYPE
"
in
case
"
$
(
uname
)
"
in
cygwin
*
)
list
=(
`
command
ps
-Wa
`
)
;;
CYGWIN
*
)
list
=(
`
command
ps
-Wa
`
)
;;
*
)
list
=(
`
command
ps
-o
pid,uid,command
-A
`
)
;;
*
)
list
=(
`
command
ps
-o
pid,uid,command
-A
`
)
;;
esac
esac
...
...
plugins/zsh-navigation-tools/n-list
View file @
587b5545
...
@@ -261,6 +261,8 @@ done
...
@@ -261,6 +261,8 @@ done
last_element
=
"
$#list
"
last_element
=
"
$#list
"
zcurses clear main redraw
zcurses clear inner redraw
while
((
1
))
;
do
while
((
1
))
;
do
# Do searching (filtering with string)
# Do searching (filtering with string)
if
[
-n
"
$NLIST_SEARCH_BUFFER
"
]
;
then
if
[
-n
"
$NLIST_SEARCH_BUFFER
"
]
;
then
...
...
plugins/zsh-navigation-tools/zsh-navigation-tools.plugin.zsh
View file @
587b5545
#!/usr/bin/env zsh
#!/usr/bin/env zsh
0
=
"
${
(%)
:-
%N
}
"
# this gives immunity to functionargzero being unset
#
export
ZNT_REPO_DIR
=
"
${
0
%/*
}
"
# No plugin manager is needed to use this file. All that is needed is adding:
# source {where-znt-is}/zsh-navigation-tools.plugin.zsh
#
# to ~/.zshrc.
#
# According to the standard:
# http://zdharma.org/Zsh-100-Commits-Club/Zsh-Plugin-Standard.html
0
=
"
${${
ZERO
:-${
0
:#
$ZSH_ARGZERO
}}:-${
(%)
:-
%N
}}
"
0
=
"
${${
(M)0
:#/
*
}:-
$PWD
/
$0
}
"
export
ZNT_REPO_DIR
=
"
${
0
:h
}
"
export
ZNT_CONFIG_DIR
=
"
$HOME
/.config/znt"
export
ZNT_CONFIG_DIR
=
"
$HOME
/.config/znt"
#
# Update FPATH if:
# 1. Not loading with a plugin manager
# 2. Not having fpath already updated
#
if
[[
${
zsh_loaded_plugins
[-1]
}
!=
*
/zsh-navigation-tools
&&
-z
${
fpath
[(r)
${
0
:h
}
]
}
]]
then
fpath+
=(
"
${
0
:h
}
"
)
fi
#
#
# Copy configs
# Copy configs
#
#
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment