active questions tagged tab-completion - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T02:53:17Z http://stackoverflow.com/feeds/tag/tab-completion http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1896471/bash-completion-what-can-we-do-with-it-what-lies-in-the-future 1 Bash Completion: What can we do with it, what lies in the future. luca 2009-12-13T13:10:53Z 2009-12-13T18:31:23Z <p>Bash lets you complete commands names and names of files in the arguments with the TAB key. But why not also common options to commands? Why not, even better, a completion system that tells you what an option does, too?</p> <p>I heard of programmable completion.. but don't understand where it fits..</p> <p>So my question is: is there a way to achieve what I ask? Other tools to combine with Bash maybe.. or anything? </p> http://stackoverflow.com/questions/1842804/tab-completion-of-filenames-as-arguments-for-matlab-scripts 2 Tab-completion of filenames as arguments for MATLAB scripts Jacob 2009-12-03T20:45:51Z 2009-12-04T15:24:47Z <p>We all know MATLAB provides tab-completion for filenames used as arguments in MATLAB function like <code>importdata</code>,<code>imread</code>. How do we do that for the functions we create?</p> <p><strong>EDIT:</strong></p> <p><img src="http://imgur.com/UW4ye.png" alt="alt text"></p> <p>Displays the files and folders in the current directory.</p> http://stackoverflow.com/questions/902542/unable-to-find-a-tab-completion-for-rubygem-in-bash-zsh 0 Unable to find a tab completion for Rubygem in Bash/Zsh Masi 2009-05-23T21:38:56Z 2009-12-01T16:15:48Z <p>I have not found a tab-completion script for RubyGem in Bash/Zsh.</p> <p><strong>Where can you get the tab-completion script for RubyGem in Bahs/Zsh?</strong></p> http://stackoverflow.com/questions/1705802/emacs-tab-completion-of-file-name-appends-an-extra-i-cygwin 1 Emacs: Tab completion of file name appends an extra i:\cygwin Rohith 2009-11-10T05:27:50Z 2009-11-10T12:49:30Z <p>I am facing some strange behavior with file-name completion in emacs. C-x C-f to find file opens up the minibuffer with i:/cygwin/home/rrajagop/StockScreener/working_copy/master_repo/stock_screener/. Hitting a TAB makes it i:/cygwini:/cygwin/home/rrajagop/StockScreener/working_copy/master_repo/stock_screener/. A couple of interesting things I've noticed:</p> <ol> <li>When the minibuffer opens up, i:/cygwin is greyed out and the path seems to start from /home. A C-a (go to begining of line) takes me to /home and not to i:/cygwin. So it looks like something in emacs is parsing the path to start from /home and not from i:/cygwin. </li> <li>I checked that TAB runs minibuffer-complete from minibuffer.el (by doing a describe-key for TAB), so it looks like minibuffer-complete is doing some translation for cygwin and appending the extra i:/cygwin. </li> </ol> <p>How would I go about figuring this out/fixing it? </p> <p>EDIT: Extra Information I tried opening up emacs with -Q and this problem doesn't happen. So this is something I'm loading in my .emacs. This is what I have in my .emacs</p> <pre><code>(require 'cl) ; Needed to see how fast Emacs loads. Loading time is printed at the ; and of the execution of .emacs file. (defvar *emacs-load-start* (current-time)) ; I really like this font. I also tried Monaco which you can ; see on lot of Railscasts but I couldn't find the one which ; supports Serbian Cyrillic and Latin letters. (set-default-font "-outline-Courier New-normal-r-normal-normal-19-142-96-96-c-*-iso8859-1") ;; Don't show that splash screen (setq inhibit-startup-message t) ; This should allegedly speed up Emacs starting by preventing ; some requests from the window manager back to the Emacs. Frankly ; speaking I didn't notice some speed up but I still keep it:( (modify-frame-parameters nil '((wait-for-wm . nil))) ;Allows syntax highlighting to work, among other things (global-font-lock-mode 1) ; Sets initial window position (set-frame-position (selected-frame) 0 0) ; Sets initial window size to 85 columns and 47 rows (set-frame-size (selected-frame) 88 32) ; Makes last line ends in carriage return (setq requre-final-newline t) ; Sets Ctrl-x / key combination for easy commenting ; out of selected lines. (global-set-key "\C-x/" 'comment-or-uncomment-region) ; Allow resizing of the mini-buffer when necessary (setq resize-minibuffer-mode t) ; Auto magically read compressed files (auto-compression-mode 1) ; Set standard indent to 2 rather then 4 (setq standard-indent 2) ; This tells Emacs to create backup files. (setq make-backup-files t) ; And this will enable versioning with default values. (setq version-control t) ; Remove annoying message about deleting excess backup of .recentf ; which is list of recent files used (setq delete-old-versions t) ; Finally do not spread backups all over the disk. ; Just save all backup files in this directory. (setq backup-directory-alist (quote ((".*" . "~/.emacs_backups/")))) ;; Directory to put various el files. (add-to-list 'load-path "~/.emacs.d/includes") (require 'ascii-table) ;; Loading collection of generic modes for different languages (require 'generic-x) ;; Recent files (require 'recentf) (recentf-mode 1) ;; Loads ruby mode when a ruby file is opened. (autoload 'ruby-mode "ruby-mode" "Major mode for editing ruby scripts." t) (setq auto-mode-alist (cons '(".rb$" . ruby-mode) auto-mode-alist)) (setq auto-mode-alist (cons '(".rhtml$" . html-mode) auto-mode-alist)) (setq auto-mode-alist (cons '(".html.erb$" . html-mode) auto-mode-alist)) ;; Turn on ruby electric (auto completion of parenthesis, etc.) (add-hook 'ruby-mode-hook (lambda() (add-hook 'local-write-file-hooks '(lambda() (save-excursion (untabify (point-min) (point-max)) (delete-trailing-whitespace) ))) (set (make-local-variable 'indent-tabs-mode) 'nil) (set (make-local-variable 'tab-width) 2) (imenu-add-to-menubar "IMENU") (define-key ruby-mode-map "\C-m" 'newline-and-indent) (require 'ruby-electric) (ruby-electric-mode t) )) ;; Ruby debugging. (add-to-list 'load-path "~/.emacs.d/plugins/rdebug") (autoload 'rdebug "rdebug" "Ruby debugging support." t) (global-set-key [f9] 'gud-step) (global-set-key [f10] 'gud-next) (global-set-key [f11] 'gud-cont) (global-set-key "\C-c\C-d" 'rdebug) ;; set compile command based on current major mode (autoload 'mode-compile "mode-compile" "Command to compile current buffer file based on the major mode" t) (global-set-key "\C-cc" 'mode-compile) (autoload 'mode-compile-kill "mode-compile" "Command to kill a compilation launched by `mode-compile'" t) (global-set-key "\C-ck" 'mode-compile-kill) ;; yasnippet - adding code snippet insertion (add-to-list 'load-path "~/.emacs.d/plugins/yasnippet") (require 'yasnippet) ;; not yasnippet-bundle (yas/initialize) (yas/load-directory "~/.emacs.d/plugins/yasnippet/snippets") ;; Use CYGWIN bash (require 'setup-cygwin) ;; Subversion integration via psvn - not gonna use svn anymore ;; (require 'psvn) ;; add some elisp tutorials to the info directory (let ((info-root (concat usb-drive-letter "cygwin/usr/local/bin/emacs/info/"))) (setq Info-directory-list (list info-root (concat info-root "elisp-tutorial-2.04/") (concat info-root "emacs-lisp-intro-2.14")) ) ) ;; Load time for .emacs - this should be the last line in .emacs for accurate load time (message "ido and org-install took: %ds" (destructuring-bind (hi lo ms) (current-time) (- (+ hi lo) (+ (first *emacs-load-start*) (second *emacs-load-start*)) ))) </code></pre> http://stackoverflow.com/questions/1571578/how-to-do-brace-expansion-tab-completion-for-filenames-in-vim 0 How to do brace expansion tab-completion, for filenames in vim? 13ren 2009-10-15T10:43:07Z 2009-10-15T12:12:24Z <p>In vim (and bash), you can specify alternatives in filenames, eg:</p> <pre><code>:arga project/html/{index,sitemap}.html </code></pre> <p>This expands to "project/html/index.html" and "project/html/sitemap.html" (the <code>:arga</code> appends them both to the argument list; you can get to them with <code>:n</code>).</p> <p>Now, vim already does some filename completion on this, with <code>TAB</code>, by cycling through the possibilities. For the above example, it would show the index one, then the sitemap one, then back to the original text.</p> <p>I to be able to type this much:</p> <pre><code>:arga project/html/{in </code></pre> <p>and press <code>TAB</code>, and have it complete (even though I'm in the middle of a brace):</p> <pre><code>:arga project/html/{index.html </code></pre> <p>and have tab-completion also work for the next one, from <code>project/html/{index.html,sit</code> to <code>project/html/{index.html,sitemap.html</code>.</p> <p>Is there already an option in vim to do this? If not, how would you implement it?</p> http://stackoverflow.com/questions/1552961/ipython-tab-completes-only-some-modules 0 IPython tab completes only some modules vgm64 2009-10-12T06:05:19Z 2009-10-12T17:03:50Z <p>I'm using the EPD version of python and IPython. After installing some modules using easy_install I notice that, although they can be imported, they cannot be tab completed. They exist on the path but, while included modules (pylab, readline, math) <em>can</em> be completed, these new modules cannot.</p> <p>Anyone know what I should look into to find the problem? I've checked that the packages are in the same place as other modules:</p> <pre><code>In [1]: import pylab In [2]: pylab Out[2]: &lt;module 'pylab' from '/Library/Frameworks/Python.framework/Versions/5.0.0/lib/python2.5/site-packages/pylab.pyc'&gt; In [3]: import BeautifulSoup In [4]: BeautifulSoup Out[4]: &lt;module 'BeautifulSoup' from '/Library/Frameworks/Python.framework/Versions/5.0.0/lib/python2.5/site-packages/BeautifulSoup-3.1.0.1-py2.5.egg/BeautifulSoup.pyc'&gt; </code></pre> <p>Maybe something not handling the <code>.eggs</code> correctly? Thanks.</p> <p><strong>Update</strong>: Following up on gnibbler's post, I've found that the tab completion hits an exception at line 633 in completer.py at:</p> <pre><code> try: ret = self.matches[state].replace(magic_prefix,magic_escape) return ret except IndexError: return None </code></pre> <p>But what is causing the failiure...</p> <p><strong>Update</strong>: </p> <pre><code>In [5]: from Bea&lt;tab_here&gt; *** COMPLETE: &lt;Bea&gt; (0) matches: [] state: 0 </code></pre> <p>So this is just saying that the matches list is an empty set: there are no matches. It is still not finding the module. I'll try to investigate where <code>matches</code> is getting the modules its looking for when I have time.</p> http://stackoverflow.com/questions/1533136/how-would-one-implement-bash-like-tab-completion 1 How would one implement bash-like tab completion? Zack 2009-10-07T17:44:51Z 2009-10-08T08:51:42Z <p>I'm trying to determine how the system prints characters to standard input -- that is, how it prints characters which the user can delete and which are considered input if the user hits "Enter."</p> <p>I happen to be using C, but I would be very surprised if the solution were language-dependent.</p> <p>Thanks for any insights! : D</p> http://stackoverflow.com/questions/1529251/tcsh-and-or-bash-directory-completion-with-variable-hidden-root-prefix 3 Tcsh and/or bash directory completion with variable hidden root prefix Jeremy Y. 2009-10-07T02:49:59Z 2009-10-08T07:27:34Z <p>I'm trying to set up directory completion in tcsh and/or bash (both are used at my site) with a slight twist: for a particular command "foo", I'd like to have completion use a custom function to match the first /-delimited term to an actual subtree node, and then follow normal directory completion for any successive terms. It is sort of a combination of cdpath and completion, or I suppose a form of directory completion where the starting point is controlled by the completion script. It would work as follows:</p> <pre><code>$ foo xxx&lt;TAB&gt; (custom completion function produces choices it finds at arbitrary levels in the dir tree) xxxYYY xxxZZZ xxxBLAH ... foo xxxYYY/&lt;TAB&gt; (normal directory completion proceeds from this point on, to produce something like:) foo scene/shot/element/workspace/user/... </code></pre> <p>We'd like to do this because we have a large production development tree (this is a CGI production facility), that shell-savvy users are navigating and jumping around in all the time. The complaint is that the upper levels of the tree are cumbersome and redundant; they just need a quick search on the first term to find possible "head" choices and do directory completion from there. It seems like programmable completion could offer a way to do this, but it is turning out to be pretty elusive.</p> <p>I've made several attempts of custom bash and tcsh completion to do this, but the closest I've gotten is a form of "word completion" where the user must treat the directory levels as separate words with spaces (e.g. foo scene/ shot/ element/ workspace/ ...). I could continue hacking at my current scripts--but I've been wondering if there's something I'm not understanding--this is my first attempt to program completion, and the docs and examples are pretty thin in shell books and on the internet. If there's any completion-guru's out there that can get me on the right track, I'd appreciate it.</p> <p>FWIW: here is what I've got so far (in tcsh first, then bash). Note that the static root '/root/sub1/sub2/sub3' is just a placeholder for a search function that would find different matches in different levels. If I can get that to work, I can sub in the search feature later. Again, both examples do word completion, which requires user to type a space after each matching term (I also have to remove the spaces in the function to construct an actual path, yuck!)</p> <p>TCSH EXAMPLE (note the function is actually a bash script):</p> <pre><code>complete complete_p2 'C@*@`./complete.p2.list.bash $:1 $:2 $:3 $:4 $:5 $:6 $:7 $:8 $:9`@@' #!/bin/bash --norc # complete.p2.list.bash - Completion prototype "p2" for shotc command # Remove spaces from input arguments ppath=`echo $@ | sed -e 's/ //g'` # Print basenames (with trailing slashes) of matching dirs for completion ls -1 -d /root/sub1/sub2/sub3/$ppath* 2&gt;/dev/null | sed -e 's#^.*/##' | awk '{print $1 "/"}' </code></pre> <p>BASH EXAMPLE:</p> <pre><code>_foo() { local cur prev opts flist COMPREPLY=() cur="${COMP_WORDS[COMP_CWORD]}" prev="${COMP_WORDS[COMP_CWORD-1]}" # Get all command words so far (omit command [0] element itself), remove spaces terms=`echo ${COMP_WORDS[@]:1} | sed -e 's/ //g'` # Get basenames (with trailing slashes) of matching dirs for completion flist=`ls -1 -d /root/sub1/sub2/sub3/${terms}* 2&gt;/dev/null | sed -e 's#^.*/##' | awk '{print $1 "/"}' | xargs echo` COMPREPLY=( $(compgen -W "${flist}" ${cur}) ) return 0 } complete -F _foo foo </code></pre> http://stackoverflow.com/questions/1382063/how-to-enable-auto-compleation-in-rubys-irb 2 How to enable auto compleation in Ruby's IRB John F. Miller 2009-09-05T00:30:02Z 2009-09-08T23:45:31Z <p>When I use Merb's built in console, I get tab auto-completion similar to a standard bash prompt. I find this useful and would like to enable it in non-merb IRB sessions. How do I get auto-completion in IRB? </p> http://stackoverflow.com/questions/1199981/tab-completion-and-mc-problems 0 TAB completion and mc problems Mamut 2009-07-29T12:41:12Z 2009-09-06T04:46:47Z <pre><code>DISTRIB_ID=Ubuntu DISTRIB_RELEASE=8.10 DISTRIB_CODENAME=intrepid DISTRIB_DESCRIPTION="Ubuntu 8.10" </code></pre> <p>This is the server version.</p> <p>When I ssh into it, I encounter the following problems:</p> <p><strong>Problem 1</strong></p> <p>tab completion behaves weird to the point of being unusable:</p> <pre><code>&gt; cd ~/&lt;press TAB&gt; -sh: &lt;( compgen -d -- '/home/dmitriid/' ): No such file or directory &gt; vi ~/.&lt;press TAB&gt; &lt;( compgen -d -- '/home/dmitriid/.' ): No such file or directory -sh: &lt;( eval compgen -f -X '*.@(o|so|so.!(conf)|a|rpm|gif|GIF|jp?(e)g| JP?(E)G|mp3|MP3|mp?(e)g|MPG|avi|AVI|asf|ASF|ogg|OGG|class|CLASS)' -- $(quote_readline $cur) ): No such file or directory &gt; nano ~/.&lt;press TAB&gt; ./ .bash_logout .mc/ .viminfo ../ .bashrc .mysql_history .aptitude/ .erlang.cookie .profile .bash_history .gitconfig .ssh/ </code></pre> <p>Is there a way to fix that?</p> <p><strong>Problem 2</strong></p> <p>I use mc quite a lot. I often do a Ctrl+O to hide panels and work in the shell. In my case:</p> <ol> <li>Ctrl + O hides panels</li> <li>Any keypress brings the panels back</li> </ol> <p>Is there a way to fix that as well?</p> <p>Thank you!</p> http://stackoverflow.com/questions/675370/tab-completion-in-python-interpreter-in-os-x-terminal 2 Tab-completion in Python interpreter in OS X Terminal gotgenes 2009-03-23T21:48:29Z 2009-08-11T01:52:21Z <p>Several months ago, I wrote a <a href="http://igotgenes.blogspot.com/2009/01/tab-completion-and-history-in-python.html" rel="nofollow">blog post</a> detailing how to achieve tab-completion in the standard Python interactive interpreter--a feature I once thought only available in IPython. I've found it tremendously handy given that I sometimes have to switch to the standard interpreter due to IPython unicode issues.</p> <p>Recently I've done some work in OS X. To my discontent, the script doesn't seem to work for OS X's Terminal application. I'm hoping some of you with experience in OS X might be able to help me trouble-shoot it so it can work in Terminal, as well.</p> <p>I am reproducing the code below</p> <pre><code>import atexit import os.path try: import readline except ImportError: pass else: import rlcompleter class IrlCompleter(rlcompleter.Completer): """ This class enables a "tab" insertion if there's no text for completion. The default "tab" is four spaces. You can initialize with '\t' as the tab if you wish to use a genuine tab. """ def __init__(self, tab=' '): self.tab = tab rlcompleter.Completer.__init__(self) def complete(self, text, state): if text == '': readline.insert_text(self.tab) return None else: return rlcompleter.Completer.complete(self,text,state) #you could change this line to bind another key instead tab. readline.parse_and_bind('tab: complete') readline.set_completer(IrlCompleter('\t').complete) # Restore our command-line history, and save it when Python exits. history_path = os.path.expanduser('~/.pyhistory') if os.path.isfile(history_path): readline.read_history_file(history_path) atexit.register(lambda x=history_path: readline.write_history_file(x)) </code></pre> <p>Note that I have slightly edited it from the version on my blog post so that the <code>IrlCompleter</code> is initialized with a true tab, which seems to be what is output by the Tab key in Terminal.</p> http://stackoverflow.com/questions/1081405/python-tab-completion-in-windows 1 python tab completion in windows Nathan 2009-07-04T03:11:37Z 2009-08-10T16:51:00Z <p>I'm writing a cross-platform shell like program in python and I'd like to add custom tab-completion actions. On Unix systems I can use the built-in readline module and use code like the following to specify a list of possible completions when I hit the TAB key:</p> <pre><code>import readline readline.parse_and_bind( 'tab: complete' ) readline.set_completer( ... ) </code></pre> <p>How can I do this on Windows? I'd like to avoid relying on 3rd-party packages if possible. If no solution exists is it possible to simply trap TAB key press so that I can implement my own from scratch?</p> http://stackoverflow.com/questions/1177227/how-can-i-customize-tab-completion-in-perls-termshell 2 How can I customize tab completion in Perl's Term::Shell? Anandan 2009-07-24T12:02:09Z 2009-08-02T16:28:57Z <p>I am using <a href="http://search.cpan.org/perldoc/Term::Shell" rel="nofollow">Term::Shell</a> package to implement a CLI tool. This package provides a API: <code>comp_CMD</code>.</p> <p>This function is invoked whenever the user presses the TAB. My requirement here is:</p> <p><code>shell&gt; stack</code><kbd>TAB</kbd></p> <p><code>over under</code></p> <p>`shell>stack over<kbd>TAB</kbd></p> <p><code>flow sample junk</code></p> <p>But the default <code>comp_CMD</code> provides only one set of TAB options like</p> <p><code>shell&gt; stack</code> <kbd>TAB</kbd></p> <p><code>over under</code></p> <p>`shell>stack over<kbd>TAB</kbd></p> <p><code>over under</code> ### THE PROBLEM IS HERE</p> <p>Instead of <strong><em>over under</em></strong> here, I want to get <strong><em>flow sample junk</em></strong>.</p> http://stackoverflow.com/questions/1202127/rawinput-without-leaving-a-history-in-readline 2 raw_input without leaving a history in readline lostgeek 2009-07-29T18:24:10Z 2009-07-30T11:03:36Z <p>Is there a way of using raw_input without leaving a sign in the readline history, so that it don't show when tab-completing?</p> http://stackoverflow.com/questions/1169985/how-do-i-do-tab-completion-in-perls-termshell 2 How do I do tab completion in Perl's Term::Shell? Anandan 2009-07-23T06:34:42Z 2009-07-23T18:03:07Z <p>I am using the <a href="http://search.cpan.org/dist/Term-Shell" rel="nofollow">Term::Shell</a> package in Perl for implementing a CLI tool. I am not able to do the tab completion of a command part with that.</p> <p>comp_CMD() - which is a API provided by this Term::Shell, is to achieve the tab completion. This is not helping me. Does anyone know how to make this work??</p> <p>Sample Code:</p> <pre><code>#!/usr/bin/env perl package Sample; use base qw(Term::Shell); sub prompt_str { "Sample\&gt;" }; sub comp_show { my $o = shift; my $word = shift; $o-&gt;completions($word, [qw(all work and no play is no fun at)]); } sub run_show { print "run show\n"; } package main; Sample-&gt;new-&gt;cmdloop; </code></pre> <p>This is a run of the program:</p> <pre><code>Sample&gt;show[TAB] </code></pre> <p>The above command doesnt give the expected output.. it just gives me a tab.</p> http://stackoverflow.com/questions/1126500/programming-customized-tab-completion-for-zsh 0 Programming customized tab completion for zsh Pistos 2009-07-14T16:21:11Z 2009-07-14T17:39:24Z <p>Sorry if my google fu is too weak, but: I simply want to adjust zsh so that I can tab complete</p> <pre><code>someappname -s </code></pre> <p>using the contents (filenames) of ~/somedir</p> <p>For example:</p> <pre><code>someapp -s f&lt;tab&gt; </code></pre> <p>should cycle through completions based on the files starting with the letter f in ~/somedir . So I might end up with a command line like: "someapp -s foobar".</p> http://stackoverflow.com/questions/983686/how-can-i-hook-into-tcshs-tab-completion-on-linux 1 How can I hook into tcsh's TAB completion on Linux mmccoo 2009-06-11T21:06:42Z 2009-06-11T21:40:22Z <p>I have some directories with a number of "hidden" files. One example of this is I'm in a source controlled sandbox and some of the files have not been checked out yet.</p> <p>When I hit TAB, I'd like the option of seeing these files.</p> <p>A similar question has been asked before: <a href="http://stackoverflow.com/questions/212994/cvs-tab-completion-for-modules-under-linux">CVS Tab completion for modules under linux</a> The answers to that question summarize to: "Ubuntu's got that built in".</p> <p>I don't have the option of switching to Ubuntu, but surely I can use the same mechanisms.</p> <ol> <li>how can I hook into the TAB-completion feature of tcsh to add additional file Support for CVS, SVN and BitKeeper would all be useful.</li> <li>More important than support for a specific source control system is the ability to control the returned list myself.</li> <li>An acceptable solution would also be to use a key-binding other than TAB. (ctrl- perhaps)</li> </ol> http://stackoverflow.com/questions/921186/unable-to-find-a-substitute-command-for-bashs-complete-in-zsh -1 Unable to find a substitute command for Bash's complete in Zsh Masi 2009-05-28T14:38:12Z 2009-05-28T15:10:39Z <p>I put the newest git-completion.bash to my .zshrc and I get</p> <pre><code>/Users/Masi/bin/shells/git/git-completion.bash:2116: command not found: complete /Users/Masi/bin/shells/git/git-completion.bash:2118: command not found: complete </code></pre> <p>The lines are</p> <pre><code> complete -o bashdefault -o default -o nospace -F _git git 2&gt;/dev/null \ || complete -o default -o nospace -F _git git complete -o bashdefault -o default -o nospace -F _gitk gitk 2&gt;/dev/null \ || complete -o default -o nospace -F _gitk gitk </code></pre> <p><strong>Which command is a substitute for Bash's complete in Zsh?</strong></p> http://stackoverflow.com/questions/842558/unable-to-have-two-word-search-in-zshs-tab-completion-for-man 0 Unable to have two-word-search in Zsh's TAB completion for Man Masi 2009-05-09T02:48:17Z 2009-05-22T07:47:17Z <p><strong>Problem:</strong> to have a tab completion which takes two words and calculates the best match from them for Man, and then returns the best matches</p> <p><strong>Example:</strong> The following pseudo-code should give me at least Zsh's reverse-menu-complete -command. Right now, I cannot search manuals inside manuals without zgrep.</p> <pre><code>man zsh:reverse &lt;TAB&gt; </code></pre> <p>where ":" is the separator which I want.</p> <p><strong>Initial Problem:</strong> Which files does the TAB completion run when I press TAB for one word in searching manuals by Zsh?</p> http://stackoverflow.com/questions/805484/unable-to-have-macports-tab-completion-in-zsh 0 Unable to have MacPorts' tab completion in Zsh Masi 2009-04-30T05:45:32Z 2009-04-30T06:13:07Z <p>I get the following in including <a href="http://stackoverflow.com/questions/764476/unable-to-make-a-tab-completion-file-for-macports-in-bash">MacPorts' Bash tab completion</a> to Zsh</p> <pre><code>/opt/local/etc/bash_completion:[:48: unrecognized condition: `2' [ -- cut -- ] /opt/local/etc/bash_completion:[:62: unrecognized condition: `2' /opt/local/etc/bash_completion:69: command not found: shopt [ -- cut -- ] /opt/local/etc/bash_completion:3015: command not found: complete /opt/local/etc/bash_completion:3062: parse error near `&amp;&amp;' </code></pre> <p><strong>How can you have MacPorts' tab completion in Zsh?</strong></p> http://stackoverflow.com/questions/774734/unable-to-have-a-tab-completion-of-system-variables-without-a-backslash 0 Unable to have a tab completion of system variables without a backslash Masi 2009-04-21T21:34:49Z 2009-04-28T20:29:15Z <p>My inputrc is empty. I use Bash.</p> <p><strong>Problem:</strong> I am at</p> <pre><code>cd $te </code></pre> <p>I press Tab, and I get</p> <pre><code>cd \$test </code></pre> <p><strong>How can you have the tab completion without the backslash in Bash?</strong></p> http://stackoverflow.com/questions/764476/unable-to-make-a-tab-completion-file-for-macports-in-bash 0 Unable to make a tab completion file for MacPorts in Bash? Masi 2009-04-18T23:29:05Z 2009-04-19T13:11:20Z <p>I did not find by Google a tab completion file for MacPorts. It should not apparetnly differ much from the ones for Git and Django.</p> <p><strong>How can you make a tab completion for MacPorts in Bash?</strong></p> http://stackoverflow.com/questions/731219/bash-tab-completion-inside-double-quoted-string 2 Bash TAB-completion inside double-quoted string mtah 2009-04-08T18:23:22Z 2009-04-14T08:58:10Z <h3>Problem</h3> <p>I'm writing a Twitter client for the command line (in C). I'm currently working on doing TAB-completion for Twitter screen names, like so: </p> <blockquote> <p>tweet "@s&lt;TAB&gt;<br /> @sourcebits @spolsky</p> </blockquote> <p>However, I can't get it to work mid-string, e.g.:</p> <blockquote> <p>tweet "Foo bar @s&lt;TAB&gt;</p> </blockquote> <p>since Bash treats the string as one word. I couldn't find anything in the Bash man page suggesting a simple fix, so I decided to hack around it. Below is my half-done solution to the problem. I simply split the incoming string by spaces, take the last word (simplification, for now) and send it to <code>compgen</code> (the variable <code>$last_word</code> below). However, I need to append <code>$prefix</code> to the beginning of the string that the TAB-completion produces, as it replaces the whole input string (remember: it's treated as one word). That's where I'm stuck.</p> <h3>Question</h3> <p>How can this be done?</p> <h3>Code etc.</h3> <pre><code>__cltwitter_complete () { local cache="$HOME/.cltwitter_users.cache" local string=${COMP_WORDS[COMP_CWORD]} local last_word=${string##* } local prefix=${string% *} COMPREPLY=() #if [ ! -f ${cache} ] || [ "`find ${cache} -mmin +60`" != "" ]; then # cltwitter-update-cache #fi if [[ "$last_word" == \"@* ]]; then # if word is beginning of a quotation last_word=${last_word:2} elif [[ "$last_word" == @* ]]; then # if user put '@' in front last_word=${last_word:1} fi COMPREPLY=( $( compgen -W "`cat $cache`" -P @ -- $last_word ) ) } complete -F __cltwitter_complete tweet </code></pre> <p>Relevant section from the Bash man page:</p> <blockquote> <p><strong>COMP_WORDS</strong></p> <blockquote> <p>An array variable (see Arrays below) consisting of the individual words in the current command line. The words are split on shell metacharacters <strong>as the shell parser would separate them</strong>. This variable is available only in shell functions invoked by the programmable completion facilities.</p> </blockquote> </blockquote> http://stackoverflow.com/questions/740329/send-tab-to-a-child-console-windows 0 Send TAB to a child console (windows) alex2k8 2009-04-11T15:51:29Z 2009-04-11T16:16:53Z <p>I create a child console application with </p> <pre><code>_process = new Process(); _process.StartInfo.FileName = @"cmd.exe"; _process.StartInfo.UseShellExecute = false; _process.StartInfo.RedirectStandardInput = true; _process.StartInfo.RedirectStandardOutput = true; _process.StartInfo.CreateNoWindow = true; _proccess.Start(); </code></pre> <p>Now I can go to c:\aaa</p> <pre><code>_process.StandardInput.Write("cd c:\\aaa\xD\xA"); </code></pre> <p>But normally user can type c:\ + TAB + ENTER. How can I do the same? This does not work:</p> <pre><code>_process.StandardInput.Write("cd c:\\\0x9\xD\xA"); </code></pre> http://stackoverflow.com/questions/212994/cvs-tab-completion-for-modules-under-linux 2 CVS tab completion for modules under Linux skinp 2008-10-17T17:06:17Z 2008-10-28T20:26:40Z <p>How can I get tab completion to work for selecting CVS modules under Linux (preferably using bash) ?</p> <p>For example, "cvs co " + tab would list the modules I can checkout. I've heard it's easy to do using zsh, but still I didn't manage to get it working either. </p> <p>Also, how can I list all available modules (or repositories?) available in the CVSROOT?</p>