The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
2answers
47 views

Animation completion block running too soon

I am trying to move a plane along a path as the user is defining it, similar to the controls in Flight Control. I am able to draw the path, albeit inefficiently, but I cannot get the plane to animate ...
0
votes
1answer
51 views

How to make a method to wait till another method complete it work in Objective C?

Consider this scenario. -(void) mainMethod { [self subMethod1]; [self subMethod2]; } My assumption: When calling the mainMethod, it will call the subMethod1 first, then the subMethod2. But, ...
1
vote
1answer
44 views

Ipython tab completion - identifying methods vs properties

When using the interactive ipython tab completion, is there a way easily identify which of the returned values are properties and which are methods? I use os as an example below. I don't see a ...
0
votes
1answer
16 views

How to determine when all methods are finished?

I have RootViewController where I create my MainViewDownload instance and call method of that instance. MainViewDownload *download = [[MainViewDownload alloc] init]; [download loadMainViewImages]; ...
0
votes
1answer
29 views

MySQL auto completion

How can I use MySQL tab completion ? The line auto-rehash is already in my my.cnf file. The completion works with select command but it doesn't work with source command. Thanks.
1
vote
1answer
78 views

NSOperation completionBlock is called twice

I'm working on a NSOperation subclass and I came across this very weird issue were the completion block is called twice in a row. The KVO calls seem fine but the completionBlock is still strangely ...
0
votes
1answer
46 views

Seems like my app is doing stuff in the wrong order

(Note: You can probably even answer this without reading any of my code, if you don't feel like reading this novel of a question, I've explained at the bottom) I have some code that's throwing me a ...
0
votes
1answer
36 views

Bash console tab-completion in Ubuntu [closed]

I used to develop in RedHat and never had the following problem until I switched to Ubuntu: Whenever I use tab-completion (which is ALL the time) I noticed that depending on what command I am about ...
0
votes
4answers
46 views

Method inside another method completion wait

How can I wait for some method to complete and then continue work ?? - (void)loadMoreDataOnBottomOfTableview { NSLog(@"LOADING ITEMS ON BOTTOM"); [self refreshStream]; [self.mainTableView ...
0
votes
1answer
33 views

how to implement a file name completion in Emacs

Recently, I want to make a library to operate the Windows registry. The first thing I want to do is making the input of registry key path easily. Since it looks like a file path, maybe this can be ...
1
vote
1answer
40 views

Mongo shell tab completion

I was wondering if it's possible to configure the behavior of tab completion in the mongo shell? The two behaviors I've seen are: The first hit of the tab key completes as far as there's no ...
0
votes
1answer
44 views

CLGeocoder delay until completion handler

I have an app that requires Geocoding from a string to lat/long values, I use the geocoder from the iOS class reference: ...
0
votes
2answers
98 views

Vim insert mode file path completion

I want to change where vim looks for file completion, but only in insert mode. For example: I open gvim inside of the CG-Website directory. This is my directory structure: Then i go in to the ...
0
votes
1answer
95 views

How to enable code assist for the DOM for JavaScript projects in Eclipse

Please guys, I am despairing. How can I simply get in this little popup (code completion) all possible methods/functions given when I type window.(blablabla). Because if I type window. there is no ...
0
votes
2answers
161 views

Google analytics reports wrong goal completion numbers

I have 10 goals set up in google analytics. They all share the same completion URL, but all have different funnels / steps before completion. Today I know that I have one goal completion, but looking ...
0
votes
0answers
29 views

How to find property of specific class that I want in xcode code sense

This might be silly question, but I think it's very useful if I can. When I use a code sense(dot notation) with pushing 'escape' key right behind 'dot', there are so many properties that can use like ...
2
votes
1answer
66 views

Passing the current commandline to a zsh autocomplete function

I track my billable hours. Every item has a description and a number of tags for different clients, projects etc. Recently I added zsh completion for these tags. This is what I have in my zsh ...
-1
votes
1answer
64 views

Multiple Animation function call Jquery [closed]

I have this code : $("#myDIv").animate({ left: '+=' + 100 }, 800, function() { $("#myDIv").animate({ left: '-=' + 50 }, 800); }); But the second animation is called more ...
1
vote
2answers
59 views

How to merge completion candidates for vim?

I often rely on omni-completion to edit source codes, so my current .vimrc contains following setting to gain quick access to intended candidates: inoremap <C-f> <C-x><C-o> Now I ...
1
vote
1answer
84 views

Reverse search completion of vim's command history without using direction keys

Is there an option to auto-complete a currently typed command with one from the history, without using the direction keys? This an extension to this question: How do you search through vim's command ...
0
votes
0answers
81 views

How to stop function gathering information before it is completed (Flex & AS3)

I 'try' to develop a program, which is going to ask 10 questions to the user with Flex and ActionScript. (all 10 questions will be asked by 4 different functions which represents 4 basic operations. ...
1
vote
2answers
624 views

Stop an auto-reverse / infinite-repeat UIView animation with a BOOL / completion block

I'm setting up the following UIView animateWithDuration: method, with the intention of setting my animationOn BOOL elsewhere in the program to cancel that infinite looped repeat. I was under the ...
0
votes
1answer
71 views

Can I use completion buffer instead of menu with auto complete in emacs?

I'd like to use completion as emacs' origin behavior: With emacs -q and (setq tab-always-indent 'complete) When hit TAB, gives me a completion buffer showing all candidates. Can I do this using ...
0
votes
2answers
103 views

Emulate dabbrev-expand in hippie-expand, limiting to matching buffers

If I use dabbrev-expand for expansion, Emacs searches the current buffer, then other buffers with the same mode. This is handled by dabbrev-friend-buffer-function which by default is set to ...
1
vote
1answer
33 views

How do I dynamically select a completion function in zsh?

Say I have a script foo which can be called as: foo git clone http://example.com or as: foo print 12 etc. How can I make a compdef that delegates to $argv[0] here to allow it to handle ...
0
votes
0answers
60 views

Aptana Studio 3 code info

I'm using Aptana studio 3 and i find it very annoying to have to press arrow down multiple times to get to my code completion option in. Here a pic to clarify: I would like to remove the first ...
0
votes
0answers
76 views

“Completion Percentage” for Progress Bar with InstallAnywhere

I am trying to develope "Console" based installer with InstallAnywhere. And want to show a "Completion Percentage" for Progress Bar. Any Suggestions please. Thanks.
0
votes
1answer
501 views

Auto-completion for custom jsf taglib

I would like eclipse (juno or older) to propose completion for my custom taglib. So, I wrote a .taglib.xml file whose code is : <?xml version="1.0" encoding="UTF-8"?> <facelet-taglib ...
0
votes
1answer
2k views

IOS 6 UIView animation completion

Any idea why the following code does not working under IOS 6, while it runs perfectly under IOS 5 executing the NSLog but on IOS 6 (both in simulator and iPad) the NSLog does not executed at all! ...
0
votes
1answer
956 views

How to get a status of a running query in postgresql database

I have a select query running very long. How will I get a status of that query, like how long will it be running? Whether it is accessing a data from the tables or not. Note : As per pg_stat_activity ...
0
votes
1answer
187 views

dismissviewcontrolleranimated: completion: not found after upgrade to xcode 4.5

after upgrading to xcode 4.5, I got a warning that dismissViewControllerAnimated is deprecated. I change the code to the recommended dismissViewControllerAnimated:completion: and I get a warning that ...
2
votes
1answer
2k views

How to reverse-i-search back and forth?

I use reverse-i-search often, and that's cool. Sometime though when pressing Ctrl+r multiple times, I pass the command I am actually looking for. Because Ctrl+r searches backward in history, from ...
2
votes
1answer
272 views

jQuery Code Completion Style Textbox Typing

Does anyone know of a function or plugin to jQuery (or pure JS, doesn't matter) that will perform a code completion type function? But with change-able options? Like I want to start typing [b] and ...
1
vote
2answers
143 views

How to configure bash completion to expand partial path like in emacs “minibuffer-complete”?

I would like to configure my bash shell to expand partially entered tree structure like it does emacs "minibuffer-complete" command. Imagine I have two folders, foo1 and foo2. foo1 contains a ...
4
votes
2answers
553 views

Bash tab completion adds extra space after the first completion

Bash tab completion adds extra space after the first completion which stops further completion if the compeletion target is a file in multi-level folders. For example, I have a file in the path ...
0
votes
1answer
171 views

Aptana remote files code assist

I'm a long time Zend Studio user who is attempting to transition to Aptana. A lot of the projects I work on aren't actually projects inside of Zend, I just use the remote files section of Zend and ...
0
votes
0answers
90 views

macosx lion bash tab completion for directories takes ages

at work I have to wait 1s~5s for dir completion in iterm2 same mba but at home works instantly any hints where to start digging appreciated
2
votes
1answer
167 views

BASH: How to activate FULL $var completion

under Debians BASH I can do the following: foo=/path/to/some/file cat $f[TAB] As you can see, I can autocomplete the variable $foo by pressing TAB. Under Ubuntu (11) the behaviour is not the same ...
1
vote
0answers
208 views

BPEL foreach completioncondition doesn't work

I'm trying to get the BPEL foreach completioncondition work. Therefore I made a very simple test case. I have a foreach loop which waits for $Counter seconds and then assign the $Counter value to the ...
0
votes
2answers
135 views

Get index of NSTextField completion

I have an NSTextField UI element where the user can type into the text field and I want to drop down a list of completions beneath the text field as a "live search". I was hoping to use the native ...
0
votes
0answers
38 views

CEDET: make completion less intelligent

when using semantic's auto-completion, i get completion results from included headers only. Is it possible to make completion less intelligent, and list all possible completions, as if I had included ...
0
votes
0answers
300 views

PHP not returning NSDictionary to iOS JSON

My php code is not returning a Dictionary like it used to. I recently had this code: <? include"master_inc.php"; ...
0
votes
3answers
424 views

2 animations on same object, only last shows. How to show first one w/o nesting completion block?

I'm doing two animations on the same UIImageView, using blocks. Animations are not quite back to back, but almost; there is some logic inbetween. animate UIImageView from one location on the view to ...
0
votes
1answer
133 views

Bash completion for strings with spaces and punctuation

I'm trying to write a bash completion function that works for strings containing spaces and punctuation, even quotes may be in there. I extract these strings with sed from files and thus have them as ...
0
votes
1answer
357 views

WSASend, WSARecv completion routines scheduling questions

I'm implementing a client/server pair, commnicating through TCP/IP sockets, using overlapped IO with completion routines in Windows. The debugging is being done with two VirtualBox virtual machines ...
0
votes
1answer
733 views

MediaPlayer onCompletionListener called while paused

My media player for some reason completes while it is paused. Now i have seen another post that said about it being async and 300ms difference and that I understand. But my main problem is that i have ...
2
votes
1answer
197 views

Bash programmable completion when typing “first command”

Is there a way how to control completion for first command being typed on bash4 command prompt? I can control completions for "empty line" with complete -E, but as soon as some characters are typed, ...
2
votes
3answers
4k views

NSURL Connection sendAsynchronousRequest How to save the response?

please bear with me, as I come from a C/C++ background. .h @property (strong) NSString *reply; I have the following method: .m @synthesize reply; - (void)send { [NSURLConnection ...
0
votes
1answer
301 views

issue with the code completion in Scala IDE for Eclipse

I'm using "Eclipse for Java Developers 7.2" and Scala IDE 2.1.0. The issue is "code completion"... I have "Use Scala-compatible JDT" and "Enable JDT content assist" enabled under my Eclipse. Are ...
6
votes
1answer
314 views

Setting up RefTeX Tab completion in emacs

I am trying to make Tab completion work with RefTeX. When typing C-c [ and selecting the type of reference I have then a prompt in the minibuffer. When I know the beginning of the bib key I want to ...

1 2 3