espanso-pipe special chars fix
parent
be2d0738c7
commit
21ff74838d
|
@ -40,7 +40,7 @@ echo "^sep(Espanso - text expander)" >>/tmp/espanso_list.csv
|
|||
while read -r line ; do
|
||||
|
||||
IFS='-' read -r id string <<< "$line"
|
||||
printf "\"\"\"<b><tt>%-12s</tt></b> <i>%s</i>\"\"\",espanso match exec %s\n" $id "$string" $id >> $MENU_ITEMS
|
||||
printf "\"\"\"<b><tt>%-12s</tt></b> <i>%s</i>\"\"\",espanso match exec %s\n" $id "${string//</<}" $id >> $MENU_ITEMS
|
||||
done < <(espanso match list)
|
||||
echo "^sep($CONFIGURE)" >>/tmp/espanso_list.csv
|
||||
echo "$EDITCONF, geany ~/.config/espanso/default.yml" >>/tmp/espanso_list.csv
|
||||
|
@ -52,7 +52,6 @@ fi
|
|||
|
||||
|
||||
|
||||
|
||||
### RUN
|
||||
if [ $1 == "-s" ]; then
|
||||
. /usr/bin/pipemenu-standalone.cfg
|
||||
|
|
Loading…
Reference in New Issue