Jake Romer
Jake Romer
Hiding the modeline altogether did the trick for me: ``` lisp (defadvice fzf/start (after normalize-fzf-mode-line activate) "Hide the modeline so FZF will render properly." (setq mode-line-format nil)) ```
> My issue was somehow related to tabbar - when I disabled it now everything works perfectly. I just experienced this too. Disabling evil-tabs fixed it for me.
> to do a fuzzy find **exactly** like fzf. Not quite *exactly* like fzf. Performance feels significantly worse with `projectile-find-file` on large projects and the fuzzy-matching is not as good....
I worked around this by using an up-to-date C compiler: ```zsh % echo $CC $CXX % gcc --version # Configured with: --prefix=/Applications/Xcode.app/Contents/Developer/usr --with-gxx-include-dir=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include/c++/4.2.1 # Apple clang version 12.0.5 (clang-1205.0.22.11) #...
try out [this fork for Ruby 2.0+](https://github.com/jkrmr/jazz_hands) -- it's compatible with pry 0.10 and uses byebug instead of debugger: ``` ruby group :development, :test do gem 'jazz_hands', github: 'jkrmr/jazz_hands' end...
Another example: ``` ~ % fir (fir)> class Dog (fir)* def speak (fir)* puts "arf" (fir)* end (fir)> end => :speak (fir)> Dog.spTraceback (most recent call last): 60: from ~/.asdf/installs/ruby/2.6.0/bin/ruby_executable_hooks:24:in...
This would be a welcome addition. I think `XDG_STATE_HOME` would make more sense, however, since this data isn't portable across machines (as would be expected with `XDG_DATA_HOME`), but also isn't...
@morhaham ``` touch ~/.xvimrc ``` Then open that file and edit it.
@morhaham For a project-specific xvimrc: ``` touch PROJECT_ROOT/.xvimrc ``` where `PROJECT_ROOT` is your project's root directory.