Earlier quoted context omitted.
Do you know if Gitlab allows attachments in bugs and comments? It's one of the major deficiencies in Github.
GitLab developer here; it does! Where GitHub only allows images to be dragged into issue and comment description fields, GitLab allows this for any type of file.
Tmux 2.0 released
111–120 of 221 posts
Re: Tmux 2.0 released
#112Re: Tmux 2.0 released
#113Earlier quoted context omitted.
Emacs is great and I know lots of people who love evil mode. I prefer vim because it comes pre-installed - good for ops. Many of my tools have embedded Lua, so it's great that I can exercise my Lua skills with Neovim. None of my other tools embeds elisp, so for me, elisp is a dead-end.
Neovim won't be preinstalled for a long time. Possibly it never will be. Also, writing Elisp is not far from writing Guile Scheme, and there are many tools that embed Guile.
Re: Tmux 2.0 released
#114bind-key C-c new-window
Re: Tmux 2.0 released
#115For those who are just getting started with tmux: I advise looking around others' .tmux.conf files for some sensible settings. Like Vim, Tmux ships with a lot of powerful features disabled by default. My absolute favorite has to be binding a hotkey to opening URLs in the current window [0]. See [1] for a small demo I just recorded. To get started, here's my current config: [1] [0]: https://github.com/jbnicolai/tmux/b…
> My absolute favorite has to be binding a hotkey to opening URLs in the current window. I suppose this stops working if you SSH into some box and run tmux there? I've implemented something similar, but as an urxvt plugin instead, which avoids that limitation: http://www.cs.helsinki.fi/u/tmtynkky/urxvt.png (Once Alt-O is pressed, the hotkeys with the red background appear next to each link; pressing the hotkey opens…
Liking the plugin you wrote!
Re: Tmux 2.0 released
#116For those who are just getting started with tmux: I advise looking around others' .tmux.conf files for some sensible settings. Like Vim, Tmux ships with a lot of powerful features disabled by default. My absolute favorite has to be binding a hotkey to opening URLs in the current window [0]. See [1] for a small demo I just recorded. To get started, here's my current config: [1] [0]: https://github.com/jbnicolai/tmux/b…
Here's mine: https://github.com/olalonde/dotfiles/blob/master/tmux.conf One tweak I can't live without is having the same key bindings to seamlessly switch between tmux panes and Vim split windows. ( https://gist.github.com/mislav/5189704 ) TPM is also really useful for managing tmux plugins https://github.com/tmux-plugins/tpm . My prefix key is Ctrl-Space. It's very convenient to press on the keyboard, I'm surprised…
Thank you so much for pointing me towards that vim+tmux gist!
Re: Tmux 2.0 released
#117For those who are just getting started with tmux: I advise looking around others' .tmux.conf files for some sensible settings. Like Vim, Tmux ships with a lot of powerful features disabled by default. My absolute favorite has to be binding a hotkey to opening URLs in the current window [0]. See [1] for a small demo I just recorded. To get started, here's my current config: [1] [0]: https://github.com/jbnicolai/tmux/b…
Why do you create a new window to maximize a pane [1] instead of using resize-pane -Z (mapped to bind-key z by default)? [1]: https://github.com/jbnicolai/tmux/blob/master/.tmux.conf#L96
Re: Tmux 2.0 released
#118It makes me sad to see a respectable piece of open source software hosted on this site with its intrusive advertising practices such as ads with fake "install" buttons on the download page. What is the advantage of using Sourceforge these days when github and bitbucket are free for open source?
Firstly, they're well-known by now to be complicit in sponsored 'wrapper' installers bundling some pretty awful stuff - check out what they did with FileZilla - which is an even more intrusive advertising practice than that.
Secondly, they host a lot of executable code (and don't forget build scripts in source code, unless you check your Makefiles!), but they still don't use TLS, and don't even seem to have any plans to - which is by now negligent practice, I think, considering the widespread public knowledge of Hacking Team's (and GCHQ's) at-scale deployments of network-level file infectors.
Re: Tmux 2.0 released
#119I wish it was possible to have screen-like bindings that don't require explicitly defining them all so that you don't have to unpress Ctrl each time. In screen you can press C-a c quickly but for that to work in tmux you have to add this: bind-key C-c new-window
I just tried it out, and `C-a c` created a new windows for me.
Re: Tmux 2.0 released
#120For those who are just getting started with tmux: I advise looking around others' .tmux.conf files for some sensible settings. Like Vim, Tmux ships with a lot of powerful features disabled by default. My absolute favorite has to be binding a hotkey to opening URLs in the current window [0]. See [1] for a small demo I just recorded. To get started, here's my current config: [1] [0]: https://github.com/jbnicolai/tmux/b…
I wrote a book titled "Getting started with tmux" which can be a helpful guide for those who may want to get started. http://gettingstartedwithtmux.com (Sorry if the self plug is not cool, I'm happy to delete this comment if it's not ok but I figure the community may get use out of my work)