commit eb76c791441a558abc04c47571868fc84c3822e7
parent 5f51e6c9500217f3ed35f4701fc072a89f624273
Author: Ashymad <czilukim@o2.pl>
Date: Sat, 25 Aug 2018 17:42:57 +0200
New version
Diffstat:
3 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/astroid/.config/astroid/config b/astroid/.config/astroid/config
@@ -78,6 +78,9 @@
},
"thread_view": {
"open_html_part_external": "false",
+ "preferred_type": "plain",
+ "preferred_html_only": "false",
+ "allow_remote_when_encrypted": "false",
"open_external_link": "xdg-open",
"default_save_directory": "~",
"indent_messages": "false",
diff --git a/fish/.config/fish/functions/aur-resync-devel.fish b/fish/.config/fish/functions/aur-resync-devel.fish
@@ -1,4 +1,4 @@
function aur-resync-devel
- aur sync --list | cut -f2 | grep -E -- "-$AURVCS" | aur sync --no-ver --print -
+ aur sync --list | cut -f2 | grep -E -- "-$AURVCS" | xargs aur sync --no-ver --print
end
diff --git a/fish/.config/fish/functions/aur-update-devel.fish b/fish/.config/fish/functions/aur-update-devel.fish
@@ -1,3 +1,4 @@
function aur-update-devel
- aur vercmp-devel | cut -d: -f1 | aur sync --no-ver-shallow -
+ aur vercmp-devel | cut -d: -f1 >/tmp/vcs.txt
+ xargs -a /tmp/vcs.txt aur sync --no-ver-shallow
end