fx-kirin

Results 14 comments of fx-kirin

Yes, you are right. When I put `timer_start` to my script, the resizing works fine. ``` vim function! SetLinesForFirefox(timer) set lines=28 columns=110 laststatus=0 endfunction function! OnUIEnter(event) abort if s:IsFirenvimActive(a:event) set...

It may mean you just run cmd.exe under the user permission not the admin permission.

For those who are using pdb, one of the way to avoid this, use `interact` command. https://stackoverflow.com/questions/17290314/possible-bug-in-pdb-module-in-python-3-when-using-list-generators

Don't use `git pull origin master` from the repo which once built. The command `git clean` also doesn't work well. Clone the repo cleanly and build it from there. The...

@adamryman 's hack is really helpful. If somebody doesn't want to modify your local vimperator, add the following code hook in .vimperatorrc file. ``` " To Enable map js

function EditNewFilename() let l:filename = input("filename: ") exec ':wincmd l' exec "edit " . l:filename endfunction call NERDTreeAddMenuItem({ \ 'text': '(t)New with template', \ 'shortcut': 't', \ 'callback' : 'EditNewFilename'...

Remove `gvfs-bin` from `node_modules/electron-installer-debian/src/installer.js` before you build the deb package. It's just a workaround though. I used this command. ``` sed -i -e "s/'gvfs-bin',//" node_modules/electron-installer-debian/src/installer.js ```

According to [this](https://stackoverflow.com/questions/14463277/how-to-disable-python-warnings) stackoverflow answer, you can also fix it to add `warnings.filterwarnings("ignore", category=schematics.deprecated.SchematicsDeprecationWarning)` in `setup_module` function of pytest. it's annoying anyway. ``` def setup_module(module): warnings.filterwarnings("ignore", category=schematics.deprecated.SchematicsDeprecationWarning) ```

Uninstall pycrypto and reinstall pycryptodome. It worked for me. ``` pip uninstall pycrypto pip uninstall pycryptodome pip install pycryptodome ```

``` The g:session_autosave_silent option If you set this option to true (1) the messages normally emitted by automatic, periodic saving of active sessions are silenced. ```