Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

18
votes
2answers
4k views

How do I change bash history completion to complete what's already on the line?

I found a command a couple of months ago that made my bash history auto-complete on what's already on the line when pressing the up arrow: $ vim fi [press up] $ vim file.py I'd like to set this ...
8
votes
1answer
732 views

bash tab completion without variable expansion?

Let's say I have these variables defined in my bashrc: i='cgi-bin/internal'; e='cgi-bin/external'; f='cgi-bin/foo'; b='cgi-bin/bar'; ad='cgi-bin/admin'; #etc... When I use the variable on ...
7
votes
1answer
2k views

How to enable git file tab completion with zsh compinit?

I have a problem with the zsh tab completion: After running: autoload -U compinit compinit Git tab completion for files does not work any more. For example if I type git add my_f to complete ...
7
votes
4answers
4k views

Control-r reverse-i-search in Cygwin bash: how do you “reset” the search?

Question: How do you tell Ctrl+r reverse-i-search to "reset itself" and start searching from the bottom of your history every time? Background: When using reverse-i-search in bash, I always get stuck ...
6
votes
6answers
5k views

Win32 Overlapped I/O - Completion routines or WaitForMultipleObjects?

I'm wondering which approach is faster and why ? While writing a Win32 server I have read a lot about the Completion Ports and the Overlapped I/O, but I have not read anything to suggest which set of ...
5
votes
1answer
96 views

Can bash completion be invoked programmatically?

What I want is a function I can call from a program so it completes the way bash would given a commandline and a location where TAB was pressed. . /etc/bash_completion generate_completions "command ...
5
votes
1answer
116 views

Vim: customizing filename completion in Ex-mode

Is there a way I can customize how vim does filename completion when I'm in ex-mode (on the : line)? I never want to tab-complete to some filetypes (*.o, *.hi), and I'd rather they not pop up first.
4
votes
2answers
144 views

internal code-completion in vim

There's a completion type that isn't listed in the vim help files (notably: insert.txt), but which I instinctively feel the need for rather often. Let's say I have the words "Awesome" and ...
4
votes
2answers
136 views

Is it possible to enable bash_completion for :! or :r ! in VIM?

I can use :shell to enter current dir and run commands. bash_completion work fine. But how get bash_completion working in :! command or :r ! command case? Note. I am Emacs user and Emacs M-! command ...
4
votes
2answers
277 views

Can I change vim completion preview window height?

I'm using Eclimd for completion, it generates a lot of helpful info about function, but in 1-line preview window it looks messy. (same window uses by omni-completion) So: 1. Is there any way to ...
4
votes
3answers
863 views

Tcsh and/or bash directory completion with variable hidden root prefix

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 ...
4
votes
1answer
706 views

How can I configure vim so that movement commands will include underscores and CamelCase, but completion will ignore them?

For example, I currently have this: set iskeyword-=_ This has the effect of making this work: foo_bar If cursor is on "f", pressing w moves cursor to the underscore. Pressing again moves to the ...
3
votes
1answer
768 views

Writing a custom bash-completion rule

I have directories full of files with the same prefix, which I want to be able to quickly open in vim. For example, I might have: $ ls * bar: bar_10 bar_20 bar_30 foo: foo_10 foo_20 foo_30 ...
3
votes
1answer
335 views

How to remove the file extension in a zsh completion?

I want to adjust zsh so that I can tab complete: myprog <tab> using all *.foo files in ~/somedir, but have it so that it displays them without the .foo extension. Is there any way to do ...
3
votes
1answer
408 views

Given a list of words - what would be a good algorithm for word completion in java? Tradeoffs: Speed/efficiency/memory footprint

I'm exploring the hardware/software requirements (ultimate goal is mobile Java app) for a potential free/paid application. The application will start with this simple goal: Given a list of relevant ...
2
votes
1answer
50 views

Emacs New File Confirmation during Find-File Completion

Some Emacs package I use has turned off the find-file confirmation for choosing a new non-existing file that matches parts of existing file-names shown during completion. I want this confirmation back ...
2
votes
1answer
69 views

Extending dabbrev-expand

Has anybody tried extending the completion mechanism of dabbrev-expand to support different sorts of completion mechanism (defined in minibuffer.el)? I know of mdabbrev-expand but it only does ...
2
votes
1answer
141 views

How to use code completion on SCSS files in IntelliJ IDEA 10.5?

In general SCSS files are CSS files with some special features. When i want to edit a *.sass file in my project i noticed that IntelliJ knows that file type but there is no code completion at all. I ...
2
votes
1answer
58 views

Emacs Word-Reordering Completion Style

I'm missing one piece in Emacs' already superbly unique completion system (completion-styles and completion-styles-alist), namely word and sub-word-reordering a la google search. As an example, ...
2
votes
1answer
33 views

Can bash omit backupfiles when completing commands?

When completing commands, executables in $PATH and all, I would like to omit files named #foo# and bar~. I don't mind having these backup-files laying around, but prefer not to see them when ...
2
votes
1answer
75 views

Bash completion with none space delimited words

I am working on completion for a command that takes argument like "one:two:three". In the simplest terms, I want ':' to be handled just like a space character is by default. Is there a simple way to ...
2
votes
3answers
83 views

how can i know how a task finished when using java's Future class

I'm using the java's Future class to execute a task, but the method isDone returns true if the task completed. Completion may be due to normal termination, an exception, or cancellation -- in all of ...
2
votes
2answers
447 views

Vim case-insensitive filename completion

I recently noticed how to configure bash to do case-insensitive filename completion (in /etc/inputrc, add: set completion-ignore-case on), now how do I get this in vim?
2
votes
1answer
289 views

bind key to complete filename wherever the context is in Zsh

Sometimes I want a filename instead of what zsh guesses for me. For example, I have a PNG file without a proper .png suffix, which makes zsh think it isn't a picture and won't list it when I type Tab ...
2
votes
2answers
3k views

IPHONE SDK : NSURLConnection asynchronous / wait completion bug?

I am trying to use NSURLConnection in asynchonous mode and wait for completion. During the wait, I use NSRUNLOOP to handle events. Its works in most cases (3G and WIFI) but the application hangup ...
2
votes
1answer
194 views

How do I read only available data off a windows COM port?

I have a file handle to a serial (COM) port. I need to read whatever data is available immediately and not wait for additional data to be sent. How can I determine how much data is available? I can ...
2
votes
2answers
744 views

Vim: Filename completion in reverse order

To open a file in vim, I usually type ":e " and then hit tab until the file I want appears. However, I always get in a rhythm and inadvertently go ONE past the desired file. Without knowing how to ...
2
votes
1answer
311 views

Is there a Perl equivalent for Emacs' ido-completion?

I've built a number of work-specific helper functions that could be useful for other members of my team—but I've written them all in Emacs' Elisp. And getting them to convert from Notepad++ is ...
1
vote
1answer
86 views

custom directory completion appends whitespace

I have the following directory structure: /home/tichy/xxx/yyy/aaa /home/tichy/xxx/yyy/aab /home/tichy/xxx/yyy/aac I would like to enter cdw y<TAB> and get cdw yyy/<CURSOR> as a result, ...
1
vote
2answers
239 views

How to signal sync-complete to the Android SyncManager?

I was using cancelRequest() from within my SyncAdapter, just before it exits its thread, but I then decided that was only intended to be used by another entity (UI) that wants to cancel a sync in ...
1
vote
1answer
117 views

When to release when using “withCompletionHandler”

I'm using a block to do stuff when the data is fetched, but when do I release the array which I created before? Code - GKLeaderboard *leaderboardRequest = [[GKLeaderboard alloc] init]; if ...
1
vote
1answer
297 views

XML Catalog in Eclipse is not working

Where I work we do not have any internet connection. We still want to have validation and code completion when editing xml files. I have tried the instructions here http://www.helmers.nu/?p=276 ...
1
vote
2answers
253 views

When are IO completion port packets sent and when not?

I'm currently working on an IPC mechanism based on named pipes using a IO completion port. Unfortunately I have some troubles with the msdn documentation because it's quite unclear to me in which ...
1
vote
1answer
143 views

Auto-Completion in Unix VI editor

Hey guys, after using graphical IDE's like Visual Studio, I'm used to pressing CTRL+Space to auto-complete a variable or function name. Now, I know such a thing isn't completely possible in VI, but I ...
1
vote
2answers
592 views

scroll/search JList when user starts typing

I would like to implement one of the fanciest features I every now and then. I would like to allow a user to click on a JList and if words are typed, do a query and advance the caret to the next match ...
1
vote
3answers
394 views

Does Emacs has word and line completion (like Vim's insert mode completion)?

Vim completes words and lines with CTRL-X P and CTRL-L. There's a Emacs plugin called Company mode but this plugin interfere and cause conflicts with lots of things within Emacs (with global linum and ...
1
vote
1answer
162 views

Problem mapping Tab to Omicompletion in GVim

Omnicompletion works pressing <C-X><C-O> making a dropdown list appear. I wanted to map it as <S-Tab> <C-X><C-O> but first I wanted to test it as: <C-F5> ...
1
vote
3answers
203 views

Where can I modify (at least find the files) completions in Vim?

I turned on completion in Vim: autocmd FileType python set omnifunc=pythoncomplete#Complete autocmd FileType javascript set omnifunc=javascriptcomplete#CompleteJS autocmd FileType html set ...
1
vote
1answer
1k views

Eclipse: code completion based on snippets

I would like to accomplish two tasks at once. First, to move my snippets of code from .txt files and be able to tag them/organize better. Second, assign shortcuts to those snippets that will allow ...
1
vote
1answer
218 views

TextMate - completion using an external file or file contained in project?

Does anyone know how to get TextMate to search an external file (or even the files contained in a TextMate "project") with which to perform word completion? I'm coding some stuff on the C64 (using ...
1
vote
2answers
127 views

Cocoa Controllers - best practice for notifying on completion, for disposal?

A general question on style and best practices... I have an ObjC controller object. After alloc/init of the object, I get it to do a job asynchronously: [myObject doSomeThingsOverTime]; The method ...
1
vote
6answers
673 views

Find file in directory from command line

Noob question here, trying to wean myself off of IDEs. In editors/ides such as eclipse and textmate, there are shortcuts to quickly find a particular file in a project directory. Is there a similar ...
1
vote
2answers
916 views

Bash completion for make with generic targets in a Makefile

I have a Makefile where most of my targets are created generically through a canned sequence. It seems that bash completion only suggests completions for normal targets, e.g. target_name: #$@ ...
0
votes
1answer
39 views

Code completion for members of a class using Pydev in Eclipse

I'm using Eclipse Helios Service Release 1 with Pydev 2.3.0. I have code completion working for most cases, but it doesn't work for members of a class, e.g.: Class MyClass: def __init__(self, ...
0
votes
2answers
27 views

How to perform the animation of a sequence of images and intercept its completion

I have a tabbed application and when I click on the second tab, an animation should be performed and then other operations should be executed. I have implemented the animation with [imageView ...
0
votes
1answer
40 views

In-Place Word/Symbol Dabbrev Expand

Here's my extension to dabbrev-expand to support sub-string expansion.It works as expected, as far as I know. However I would find it even more useful if it supported in-symbol expansion similar to ...
0
votes
1answer
187 views

When is the release of Aptana Studio 3.0.7 or how to fix this bug in 3.0.6?

I have downloaded recently Aptana Studio 3, build: 3.0.6.201110251455 and I have the following Aptana Studio 3 bug which prevents me to work with PHP (a project based on Symfony2). ...
0
votes
1answer
22 views

Gtk+: GtkEntryCompletion additional source

I want GtkEntryCompletion to get data from additional source (function or another model, no matter) when there's no match in models data. Is that possible?
0
votes
0answers
25 views

Bash Substring File Completion

Does bash partial/substring file completion similar to what zsh does?
0
votes
3answers
86 views

Is there a working mysql client for windows which offers tab completion?

I'm tired of typing table and column names again and again, so I'd like a client which supports completion. Do you know one? A quick google search revealed only that the standard mysql client does ...

1 2