nverno

Results 18 issues of nverno

Hi, this just merges completion for environment variables with the prior completion. I also commented out the company backend since `company-capf` should work just as well here AFAIC.

Hi, I figured I would link this [macrostepper for makefiles](https://github.com/nverno/macrostep-make), since I find that I use it all the time for expanding makefile variables. It will get confused by various...

This isn't a problem in elisp since empty macros are replaced with `nil`, but I just made an extension for makefiles, https://github.com/nverno/macrostep-make, and noticed that when a macro's definition hasn't...

When trying to add additional ace-link handlers for other modes, it would be nice to have the ace-link function check for actions in an extensible way. This pull request separates...

It took me a bit to figure out what was wrong here, and I don't *think* it is documented anywhere. Here are a couple issues I ran into: 1. If...

I think it would be useful to be able to redirect utop process output in emacs, eg. to get history to supply candidates for hippie-completion. Here's a quick attempt, but...

emacs

Calling `eclimd-start` doesn't load settings, eg. run `eclim-mode-hook` or something else to load user defined settings. For example, I keep my java config in a separate file that autoloads entry...

#99 Maybe stopping eclimd should add a check in `eclimd--match-process-output`, eg. at [line](https://github.com/emacs-eclim/emacs-eclim/blob/99fda18e661c3420fe997a217024cf7186303c2b/eclimd.el#L225) ``` (while (and (process-live-p eclimd-process) (not finished-p) ....) ``` but it breaks the previous buttercup tests that...

## Expected behavior Pressing "q" should kill / bury buffer and restore previous configuration ## Actual behavior Kills buffer, leaves window configuration set when opening problems

It would be great to be able to easily get the fully qualified type of an object at the cursors point, eg. ``` Queue q = new ArrayDeque(); // With...