Fix escape helper in fish completion plugin

This commit is contained in:
Billy Janitsch 2020-12-16 02:15:26 -05:00
parent 2928cef383
commit c94809f6da

View file

@ -137,6 +137,7 @@ def _escape(name):
# Escape ? in fish
if name == "?":
name = "\\" + name
return name
def get_cmds_list(cmds_names):