I'm trying to use icicle-command-abbrev to reduce the amount of typing that I do. I have proxy candidates enabled (setq icicle-add-proxy-candidates-flag t), (I can also enable them with C-M-_ but, for some reason, I can never get ff to match find-file. Sorting is set to proxy coandidates first, and I have proxy candidates with a higher precedence than regular commands. What am I doing wrong?
Abbrev proxy candidates in emacs icicles
82 Views Asked by PythonNut At
1
There are 1 best solutions below
Related Questions in EMACS
- How can I make 'emacsclient' open in native fullscreen every time I launch it from the terminal in macOS?
- emacsclient does not connect inside ubuntu container
- Emacs use .emacs by default instead .emacs.d/init.el
- Setting up Macaulay 2 on emacs
- org-mime add caption to exported images
- Use the same export attribute for all src-blocks
- Tags Development Tools
- Emacs 29.2 unable to find theme file
- How to automatically allow the execution of code action from HLS in emacs?
- Org-babel remote inline images with TRAMP not exporting in org export
- find and replace regex like that can deal with nested brackets
- Inheriting from variadic types messes up template member function indentation in Emacs
- Invoking org-store-link interactively, errors on calling org-man-store-link
- Disable session save in doom emacs
- How do you connect to a remote emacs server using Microsoft dev tunnels
Related Questions in ICICLES
- How to align text shown inside a plotly figure?
- How to show multiline text in a plotly icicle?
- How can I set the x-axis to a timeline in a plotly icicle?
- D3 graph questions about zoom
- How do I find org-mode files with completion in Emacs?
- Binding a key to a command and automatically using the (interactive) default values for its interactive arguments
- telling Icicles to ignore matches when creating a file
- Failing to search multiple buffers in Emacs using "icicle-search-buffer" and C-RET
- In emacs, make dabbrev-expand only do partial completions like minibuffer-expand?
- Abbrev proxy candidates in emacs icicles
- Programatically insert text into command that normally blocks event loop
- How to make an intricate multi-buffer search?
- Icicles find file in project
- Search and Replace in Emacs with Icicles
- How to backspace into a partial completion in emacs icicles
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
You don't really say what behavior you see, corresponding to "I can never get
ffto match find-file." Let me tell you what behavior you should see, and then you can please tell me what the difference is.From your description, you should see proxy candidates in
*Completions*. When you useicicle-command-abbrev(bound toC-x SPCby default) and then you typeff TABat theM-xprompt, you should see command names that have at least two parts that start withf, and you should see the proxy candidateff, which should be highlighted (with faceicicle-proxy-candidate). That proxy candidate should be the first candidate listed in*Completions*(because you have sorted proxy candidates first).If you then cycle to that candidate (just hit
TABa second time, or the down arrow once), and then hitRETto choose it, the prompt should change toCommand abbreviatedff:. If you then hitTAByou should see in*Completions*the list of commands whose names have at least two parts that start withf. You can then cycle to one or type more text to complete to one, to choose it.Let me know which part of this description you do not see.
However, I just realized that there was a bug (a missing variable binding), which I have now fixed. The symptom would be that when you choose command
find-filea missing-variable-binding error was raised. Please download the latesticicles-cmd1.el, which has the fix. (Or wait until the file is mirrored on MELPA, which could take up to a day.)If what you see other than that bug is what I described, then you should be OK with the new version. If not, please describe what you see that is different from my description. Sorry for your trouble.
(You can of course just hit
RETas soon as you typeff, to get the second completion prompt directly. But first check that the recipe above works for you.)