Skip to content

Commit

Permalink
fix: improve to make it more simple
Browse files Browse the repository at this point in the history
  • Loading branch information
3ximus committed Sep 19, 2024
1 parent e66147c commit ad14d29
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion fzf-marks.plugin.bash
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

command -v fzf >/dev/null 2>&1 && ! type fzf | grep -q alias || return
type fzf | grep -q alias || return

if [[ -z ${FZF_MARKS_FILE-} ]] ; then
FZF_MARKS_FILE=$HOME/.fzf-marks
Expand Down
2 changes: 1 addition & 1 deletion fzf-marks.plugin.zsh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.

command -v fzf >/dev/null 2>&1 && ! type fzf | grep -q alias || return
type fzf | grep -q alias || return

if [[ -z ${FZF_MARKS_FILE-} ]] ; then
FZF_MARKS_FILE=$HOME/.fzf-marks
Expand Down

0 comments on commit ad14d29

Please sign in to comment.