Constantin Kulikov
Constantin Kulikov
This is related I think: bb7f0956149457ec128b51b7900e96ad8c13d8aa . Now you can toggle the filtering within the ido- iswitchb- and standard completing-read functions. Also I updated the helm support https://gist.github.com/Bad-ptr/304ada85c9ba15013303
example: ``` (add-hook 'c-mode-common-hook '(lambda () (add-to-list 'ac-omni-completion-sources (cons "\\." '(ac-source-clang))) (add-to-list 'ac-omni-completion-sources (cons "->" '(ac-source-clang))) (setq ac-sources (append '(ac-source-clang ac-source-yasnippet) ac-sources)))) ```
hmm.... How did this happen? Did it happen after recent update of `persp-mode`? If not, try to update. Anyway, looks like the problem with restoring a window configuration. You can...
Another workaround to try is to redefine the `persp-delete-other-windows`(paste this into `*scratch*`, select, and `M-x eval-region`): ```elisp (defun persp-delete-other-windows () (let ((win (selected-window))) (when (or (window-parameter win 'window-side) (window-minibuffer-p win))...
> redefine the persp-delete-other-windows It's now in master fc129b7d89eee58eefddac0cad11f639de84a812
This may be fixed
May be fixed again )
> Part one: done. Good. > do you actually like how the company tooltip looks is the minibuffer? Not quite. > I kind of dislike packages that make minibuffer taller...
Hello. As you broke again my 'completion in minibuffer' code(It worked then it didn't then worked again and now it don't. I guess it's all about dancing around `company--posn-col-row` and...
For those who interested: https://gist.github.com/Bad-ptr/aa6be231fdc22705ca19 This is my attempt to solve these issues, as I see it. My idea is to introduce `perspectives-set`s (actually it could be called "virtual-frame" or...