This file contains hidden or 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
Xft.dpi: 120 | |
Xft.antialias: true | |
Xft.hinting: true | |
Xft.rgba: rgb | |
Xft.hintstyle: hintslight | |
rofi.color-enabled: true | |
rofi.color-window: #282828, #282828, #268bd2 | |
rofi.color-normal: #282828, #ffffff, #282828, #268bd2, #ffffff | |
rofi.color-active: #282828, #268bd2, #282828, #268bd2, #205171 |
This file contains hidden or 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
skipFloating :: (Eq a, Ord a) => W.StackSet i l a s sd -> (W.StackSet i l a s sd -> W.StackSet i l a s sd) -> W.StackSet i l a s sd | |
skipFloating stacks f | |
| isNothing curr = stacks -- short circuit if there is no currently focused window | |
| otherwise = skipFloatingR stacks curr f | |
where curr = W.peek stacks | |
skipFloatingR :: (Eq a, Ord a) => W.StackSet i l a s sd -> (Maybe a) -> (W.StackSet i l a s sd -> W.StackSet i l a s sd) -> W.StackSet i l a s sd | |
skipFloatingR stacks startWindow f | |
| isNothing nextWindow = stacks -- next window is nothing return current stack set |
I hereby claim:
- I am gilbertw1 on github.
- I am gilbertw1 (https://keybase.io/gilbertw1) on keybase.
- I have a public key whose fingerprint is 279B C424 2BE5 F80B 8995 0244 2430 6C17 03D3 4C02
To claim this, I am signing this object:
This file contains hidden or 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
def go_matching_buffers(strinput): | |
"""Return a list with buffers matching user input.""" | |
global buffers_pos | |
listbuf = [] | |
if len(strinput) == 0: | |
buffers_pos = 0 | |
strinput = strinput.lower() | |
infolist = weechat.infolist_get('buffer', '', '') | |
while weechat.infolist_next(infolist): | |
short_name = weechat.infolist_string(infolist, 'short_name') |
This file contains hidden or 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
# -*- coding: utf-8 -*- | |
# | |
# Copyright (C) 2009-2014 Sébastien Helleu <[email protected]> | |
# Copyright (C) 2010 m4v <[email protected]> | |
# Copyright (C) 2011 stfn <[email protected]> | |
# | |
# This program is free software; you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation; either version 3 of the License, or | |
# (at your option) any later version. |
Layers are enabled by adding the layer identifier to the dotspacemacs-configuration-layers variable in the .spacemacs file.
Additional variables can be passed to the layout using the following format:
(layer-identifier :variables variable-one value variable-two value)
identifer: spacemacs-layout variables:
This file contains hidden or 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
# -*- coding: utf-8 -*- | |
# | |
from functools import wraps | |
import time | |
import json | |
import os | |
import pickle | |
import sha | |
import re |
This file contains hidden or 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
Traceback (most recent call last): | |
File "<string>", line 1, in <module> | |
File "/usr/lib/python3.5/site-packages/click/core.py", line 716, in __call__ | |
return self.main(*args, **kwargs) | |
File "/usr/lib/python3.5/site-packages/click/core.py", line 696, in main | |
rv = self.invoke(ctx) | |
File "/usr/lib/python3.5/site-packages/click/core.py", line 889, in invoke | |
return ctx.invoke(self.callback, **ctx.params) | |
File "/usr/lib/python3.5/site-packages/click/core.py", line 534, in invoke | |
return callback(*args, **kwargs) |