redguardtoo/emacs.d 1938
Fast and robust Emacs setup.
redguardtoo/find-file-in-project 364
Quick access to project files in Emacs
redguardtoo/evil-nerd-commenter 320
Comment/uncomment lines efficiently. Like Nerd Commenter in Vim
Create local emacs package repository. 15 seconds to install 115 packages.
Workgroups2 - Emacs session manager
Vim matchit ported into Emacs
redguardtoo/cpputils-cmake 187
Easy real time C++ syntax check and intellisense if you use CMake
Fast, energy-saving, and powerful code navigation solution
eacl - Emacs auto complete lines by grepping project
Read clipboard history from Parcellite/Clipit on Linux and Flycut on OS X
issue commentpurcell/emacs.d
The order of company candidates is incorrect in Emacs lisp mode
Hi, @purcell
Now we have changed the completion style to (setq completion-styles '(basic partial-completion orderless)) globally, this also affect the completion in minibuffer. Now the behavior is like this:

I think it is better to set minibuffer completion-styles to use only orderless to get a better experience.
something like this would work.
(defun sanityinc/use-orderless-in-minibuffer ()
(interactive)
(setq-local completion-styles '(orderless)))
(add-hook 'minibuffer-setup-hook 'sanityinc/use-orderless-in-minibuffer)
Now it the behavior is like this:

comment created time in a minute
issue commentcompany-mode/company-mode
Company based real imcremental at-the-point drop-down menu for lsp-mode, ispell, and yasnippet.
I don't understand your meaning at all. As I've said, each completion only and must be triggered by M-x company-ispell, regardless which buffer I'm in.
comment created time in 12 minutes
issue commentcompany-mode/company-mode
Company based real imcremental at-the-point drop-down menu for lsp-mode, ispell, and yasnippet.
OK, so does completion work fine in this buffer?
But it doesn't offer dictionary completions in latex buffers? If so, you have a place in your config where you set up a buffer-local value of company-backends in latex buffers. When you find it, you can add that snippet to the function that's executing there.
comment created time in 37 minutes
issue commentcompany-mode/company-mode
Company based real imcremental at-the-point drop-down menu for lsp-mode, ispell, and yasnippet.
Sorry for my cursory.

comment created time in 43 minutes
issue commentcompany-mode/company-mode
Company based real imcremental at-the-point drop-down menu for lsp-mode, ispell, and yasnippet.
The first 10 lines of that buffer are not visible, and they are the most imporant.
comment created time in an hour
issue commentcompany-mode/company-mode
Company based real imcremental at-the-point drop-down menu for lsp-mode, ispell, and yasnippet.

comment created time in an hour
issue commentcompany-mode/company-mode
Company based real imcremental at-the-point drop-down menu for lsp-mode, ispell, and yasnippet.
And M-x company-diag says..?
comment created time in an hour
issue commentcompany-mode/company-mode
Company based real imcremental at-the-point drop-down menu for lsp-mode, ispell, and yasnippet.

comment created time in an hour
issue commentcompany-mode/company-mode
Company based real imcremental at-the-point drop-down menu for lsp-mode, ispell, and yasnippet.
And what does it say after you evaluate (push '(company-capf :with company-ispell) company-backends), which you said didn't help?
comment created time in an hour
issue commentcompany-mode/company-mode
Company based real imcremental at-the-point drop-down menu for lsp-mode, ispell, and yasnippet.
What does
M-x company-diagsay?

comment created time in an hour
startedcaptn3m0/pystitcher
started time in 3 hours
push eventxahlee/xah_emacs_init
commit sha 026848165ba4e7d9ebb8a5826502d08f0362b84f
not dead yet
push time in 4 hours
push eventcompany-mode/company-mode
commit sha ccdf6c52e29d3b2b8876db607ab62de314499686
And reindent #1118
commit sha 1fd1b363eee68e4cdcf0e610005c0bdbf9940604
Edit the docstring #1118
push time in 4 hours
push eventcompany-mode/company-mode
commit sha b3c2a3a1bddc59a451772a8c4cbde2fd2df2dcbb
Touch up the NEWS entry #1118
push time in 4 hours
push eventcompany-mode/company-mode
commit sha 32386cc98743a96e65d002d2cbec82280f1c7a0c
Refactor and make obsolete company-complete-number
commit sha 0c2a8e5f8d27c700369500e72afd533b88ecff3b
Merge pull request #1118 from yugaego/complete-nth Rename and document company-complete-number
push time in 4 hours
PR merged company-mode/company-mode
Main points and questions:
-
I could eventually test keypad behavior (hurray!) and got these results on Company's master:
M-<kp-%d>completes candidates both with active-map and search-map.<kp-%d>does not. Since search-map explicitly binds<kp-%d>to print numbers, I suppose it'd be quite natural to intent<kp-%d>to work the same way with active-map.- Related commit: 43756857.
-
#177 evil mode compatibility is still a question. (But
company-complete-numberis still in the code.) -
In the code, I had to put
company--add-quick-access-keysfunction definition before its invocation. With the definition located after invocation, I've spent hours trying to make it work with funcall/quoting, but got either a la "Symbol's function definition is void" errors or no bindings. I suppose the underlying concepts are not fully clear to me yet. Could you hint me how to fix this issue? -
If there's no restricting conventions or use-cases, maybe rather use
company--bind-quick-access-keys? (With probablycompany--unbind-quick-access-keyscounterpart according to what you'd suggested before.) -
company--add-quick-access-keysdoc string is planned to be extended after keys customization is fully implemented. Actually, this commit could be stabilized but postponed for merge, used as a (at least mostly) certain foundation for the next layers of quick-access related changes. Please let me know what would be a preferred approach. -
Moved
company-active-mapto;;; keymapssection to have related definitions closer to each other. (Could be a separate commit for better clarity of the changes history.)
Thanks!
pr closed time in 4 hours
pull request commentcompany-mode/company-mode
Rename and document company-complete-number
Looking good, thanks! :+1:
I imagined the layout where company--complete-nth would be basically inlined in company-complete-tooltip-row, but this way works too, and it's probably more explicit when we use it the new command later.
comment created time in 4 hours
fork mame/minitest
minitest provides a complete suite of testing facilities supporting TDD, BDD, mocking, and benchmarking.
http://docs.seattlerb.org/minitest/
fork in 7 hours
startedstreetcomplete/StreetComplete
started time in 9 hours
issue commentcompany-mode/company-mode
How to display regexp-filtered results on the incremental drop-down menu?
What does M-x company-diag say?
comment created time in 9 hours
startedfacebookresearch/AugLy
started time in 9 hours
issue commentcompany-mode/company-mode
How to display regexp-filtered results on the incremental drop-down menu?
Wonderful. See below:

But once I hint RET to insert the result at the point, I must re-run M-x company-ispell again.
comment created time in 9 hours
pull request commentcompany-mode/company-mode
Add company-complete-nth for quick-access bindings
Hi Dmitry, Here's what I've got after working with the code.
These (all?) important points supported:
- No backward compatibility breaking changes.
- Names and documentation better (I think) reflect what the function does.
- Aligns well with the renaming 'numbers' to 'quick-access' term.
- Extracting
company--complete-nthis not necessary, but prepares addition ofcompany-complete-quick-access.
comment created time in 9 hours
issue commentcompany-mode/company-mode
How to display regexp-filtered results on the incremental drop-down menu?
Does M-x company-ispell work?
comment created time in 10 hours
issue commentcompany-mode/company-mode
How to display regexp-filtered results on the incremental drop-down menu?
I tried with it, but noting appeared.
comment created time in 10 hours
issue commentcompany-mode/company-mode
How to display regexp-filtered results on the incremental drop-down menu?
Something like this should work:
(push '(company-capf :with company-ispell) company-backends)
Or without :with, if you're fine with only using these two backends in all your buffers.
comment created time in 10 hours
issue commentcompany-mode/company-mode
How to display regexp-filtered results on the incremental drop-down menu?
From installed dictionaries. Only this is meaningful for document writing. We can't expect all input words are existed in the buffer, obviously.
comment created time in 10 hours
issue commentcompany-mode/company-mode
How to display regexp-filtered results on the incremental drop-down menu?
Meaning completions from words-in-buffers? Or from installed dictionaries?
comment created time in 10 hours
issue commentcompany-mode/company-mode
How to display regexp-filtered results on the incremental drop-down menu?
Another issue: can I have a drop-down menu for normal writing/typesetting, just as we have for command completion with company, which is triggered by the threshold of a specific minimum input character number, say, 3, and then incrementally narrowed down as the input sequence increases. See here for detailed discussion.
comment created time in 10 hours
issue commentcompany-mode/company-mode
How to display regexp-filtered results on the incremental drop-down menu?
That's up to the backend. The language server, probably (if you're using lsp or eglot).
comment created time in 11 hours