From 593411237e2c65d3f414dfefb6da071715347a17 Mon Sep 17 00:00:00 2001 From: Klesh Wong Date: Sat, 12 Jun 2021 10:59:50 +0800 Subject: [PATCH] [feature] support WSL --- bin/bm | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/bin/bm b/bin/bm index b684fbf..07b6cec 100755 --- a/bin/bm +++ b/bin/bm @@ -8,7 +8,7 @@ else set BOOKMARK_SEARCHER fzf --layout reverse end if string match -iq '*microsoft*' (uname -r) - alias open='powershell.exe -noprofile start-process' + alias xdg-open='powershell.exe -noprofile start-process' alias disown='echo done' # no need to disown on WSL end @@ -29,7 +29,7 @@ function _help echo ' bm search with $BOOKMARK_SEARCHER and then open selected' end -function list_all +function list set -e categories set -e names for arg in $argv @@ -42,7 +42,7 @@ function list_all _filter_category $categories < $BOOKMARK_PATH | _filter_name $names end -function open_by_keyword +function open if not count $argv &>/dev/null _search else @@ -105,7 +105,7 @@ function _open_urls set LINK_PATTERN '\[(.*?)\]\((.*?)\)' while read LINE if set link (string match -r $LINK_PATTERN $LINE) - open $link[3] &>/dev/null & + echo '' | xdg-open $link[3] &>/dev/null & disown sleep 0.1 end @@ -123,11 +123,7 @@ function _search end switch $argv[1] - case list - list_all $argv[2..-1] - case open - open_by_keyword $argv[2..-1] - case help update + case list open help update $argv[1..-1] case '*' _search