For the most part I very much like Qt Creator, but a few projects I’m working on require me to switch between my editor and my web browser for reference. Qt Creator is currently interpreting Alt+Tab to autocomplete, and then switching my window focus; this is a mild problem but it’s really startin…
Tag: autocomplete
Why does zsh not autocomplete custom created scripts when bash does?
I have a custom created script to change my apt sources in /home/USERNAME/Scripts. I have added this path to the secure_path variable in /etc/sudoers. When I use bash to run my script as sudo it autocompletes just fine, but when using zsh it does not. Answer Because zsh doesn’t have autocompletion witho…
Pycharm – how to turn on autocompletion for non-project files?
I have current version of Pycharm Community Edition 2017.2.4 installed on Linux and on Windows. In the one working on Windows, I open non-project files and while I write code in them, there is autocompletion for in-project modules, classes, etc. On the Linux (Debian) however, when I write code in non-project …
Change key binding for autocomplete in haskell-vim-now
I have installed the Vim plugin haskell-vim-now in Ubuntu 14.04 LTS and in Xubuntu 14.04 LTS. After using the plugin in Ubuntu, I could use the autocompletion with Ctrl-space. However, when I installed it in Xubuntu, the Ctrl-space key would not work. The only way I made the autocompletion work was with the k…
Git aliases – command line autocompletion of branch names
If I run a regular git command such as git checkout I get helpful autocompletion of branch names when hitting the tab key. I have a few git aliases which take branch names as parameters, and I’m wondering if there’s a way of getting the branch name autocompletion to work with them? Edit: Just to p…