This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
packadd termdebug | |
let g:termdebug_wide = 1 | |
function! s:Debug(...) | |
tabedit % | |
let t:debug_tab=1 | |
au BufDelete !gdb ++once if exists('t:debug_tab') | tabclose | endif | |
endfunction | |
command! -nargs=* -bang -complete=file Debug call <SID>Debug() | Termdebug<bang> <args> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Add widgets to the wibox | |
s.mywibox:setup { | |
layout = wibox.layout.align.horizontal, | |
{ -- Left widgets | |
layout = wibox.layout.fixed.horizontal, | |
-- mylauncher, | |
s.mytaglist, | |
s.mypromptbox, | |
}, | |
s.mytasklist, -- Middle widget |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
local battery = wibox.widget.base.make_widget() | |
if utils.has_battery() then | |
table.insert(battery, separator) | |
table.insert(battery, require("widgets/battery_widget")) | |
end | |
awful.screen.connect_for_each_screen(function(s) | |
[..snip..] | |
s.mywibox:setup { | |
layout = wibox.layout.align.horizontal, | |
{ -- Left widgets |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/flexget/plugins/filter/require_field.py b/flexget/plugins/filter/require_field.py | |
index d9a0016..3d32859 100644 | |
--- a/flexget/plugins/filter/require_field.py | |
+++ b/flexget/plugins/filter/require_field.py | |
@@ -31,6 +31,9 @@ class FilterRequireField(object): | |
if field not in entry: | |
entry.reject('Required field %s is not present' % field) | |
break | |
+ if entry[field] is None: | |
+ entry.reject('Required field %s is `None`' % field) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pkgname: name | |
pkgver: 0.1 | |
depends: | |
- foo | |
- bar | |
#####PAYLOAD_SEPARATOR#### | |
build() { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
❱❱ makepkg -sir --asdeps | |
[...] | |
error: failed to commit transaction (conflicting files) | |
python3-oauth2client: /usr/lib/python3.5/site-packages/tests/__init__.py exists in filesystem | |
python3-oauth2client: /usr/lib/python3.5/site-packages/tests/__pycache__/__init__.cpython-35.pyc exists in filesystem | |
[...] | |
23:44 ramsi@shada | |
❱❱ paco /usr/lib/python3.5/site-packages/tests/__init__.py | |
/usr/lib/python3.5/site-packages/tests/__init__.py is owned by python3-ccr 0.3.3-1 | |
23:44 ramsi@shada |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#texlive-bin | |
texlive-core | |
texlive-bibtexextra | |
texlive-fontsextra | |
texlive-htmlxml | |
texlive-latexextra | |
texlive-pictures | |
texlive-pstricks |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
nnoremap <leader>f :call someFunction()<CR> | |
let map = "\<leader>f" | |
let save_map = maparg(map) | |
" save_map == ':call someFunction()<CR>' | |
nnoremap <leader>f :call someOtherFunction()<CR> | |
" I'd like to execute the previous mapping of <leader>f | |
" doesn't work because '<CR>' is not escaped in save_map | |
exe "normal!" save_map |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Unit] Description=Copy EFISTUB Kernel to UEFISYS Partition | |
[Path] | |
PathChanged=/boot/initramfs-linux-fallback.img | |
[Install] | |
WantedBy=multi-user.target | |
WantedBy=system-update.target |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ueo |
NewerOlder