Someone upthread mentioned ALT-Space to clear the priority - that seems like it would address Steve's concern about having to cycle through 26 priorities to...
3656
gsingh_2011
Nov 19, 2011 8:16 pm
On github it says that with autocomplete "you can type $ todo ad<Tab> and Bash will autocomplete to $ todo add. Any words that begin with + or @ will be...
3657
Ben Hughes
benrhughes
Nov 20, 2011 3:16 am
OK, I've started looking at this and there's one kinda major concern I hadn't thought of. Alt is already used as the modifier key for accessing the menu (Alt-F...
3658
Steve Stepp
steve_stepp
Nov 20, 2011 3:21 am
Ben, I think that would work fine for me. If we use Alt-Shift-[letter], would we also use Alt-Shift-Up and Alt-Shift-Down for consistency? Steve Stepp On Nov...
3659
Ben Hughes
benrhughes
Nov 20, 2011 4:43 am
Yep, whatever the key combo is, it will be the same for setting a specific priority and inc/dec-ing it. NB, we can't use alt-shift-space (or just alt-space)...
3660
Ingo Karkat
inkarkat
Nov 20, 2011 8:33 am
... Your todo.sh isn't locatable through $PATH, probably because you have your "t" alias with a full path to todo.sh. You should get the same Bash error if you...
3661
Ben Hughes
benrhughes
Nov 20, 2011 10:01 am
Ugh. It seems like WPF captures alt-shift in the same way as it captures just alt (so I'm having the same problem: you can't set a priority for F, I, S or any...
3662
Steve Crane
stevecrane_a...
Nov 20, 2011 11:04 am
How about using a two keypress sequence like Visual Studio does? Something like Ctrl-P,A (Ctrl-P then A unmodified) to set priority A. Think of it as entering...
3663
Ben Hughes
benrhughes
Nov 20, 2011 12:11 pm
I really like the idea of exposing a lot more functionality through shortcuts. However, the VS shortcuts kinda drive me up the wall TBH, and I re-map the...
3664
Florian Behr
behrflorian...
Nov 20, 2011 3:14 pm
Hi! I coded the feature to preserve blank lines a couple of days ago and while testing it the poor way in which "syncing" works really annoyed me. When you add...
3665
Ben Hughes
benrhughes
Nov 21, 2011 10:34 am
OK, for now I've decided to go with something simple. We can add more later if you still think it's needed after playing with it. Basically it's all Alt+arrow...
3666
Ben Hughes
benrhughes
Nov 21, 2011 12:36 pm
I've put a beta build up with my changes : https://github.com/benrhughes/todotxt.net/downloads Would you mind testing it out? It seems fine to me, but I'm a...
3667
Steve Crane
stevecrane_a...
Nov 21, 2011 1:12 pm
Hi Ben, The prioritization is working fine but there is glitch when pressing up or down after adjusting priorities. If the task whose priority was adjusted is ...
3668
Ben Hughes
benrhughes
Nov 21, 2011 1:47 pm
Thanks Steve, I'll look into it....
3669
Michael Belanger
darthwonka
Nov 21, 2011 4:17 pm
Ben, The new priority keys work nice and smooth. I noticed the same behavior that Steve reported, but it doesn't impact me too much. Thanks for such quick...
3670
Gulshan Singh
gsingh_2011
Nov 21, 2011 9:46 pm
I created a hard link to my todo.txt file, but later when I found out the hardlinked file wasn't being changed when the original was changed, I realized that...
3671
Tamara Temple
tamouse.lists@...
Nov 22, 2011 12:14 am
... Yes, use a softlink, aka, symbolic link, instead of a hardlink: ln -s /path/to/real/file /path/to/symlink/file You can also symlink directories, so say you...
3672
Gina Trapani
gina.trapani
Nov 23, 2011 3:43 am
... Yes, this is a huge problem with app, and there isn't a simple solution because we support offline mode, so the files can potentially get very far out of...
3673
Ben Hughes
benrhughes
Nov 23, 2011 10:55 am
From what I can tell this only happens when you use the arrow keys to move around the list (j and k work as expected). I'm not sure exactly what's going on,...
3674
Mika Saariaho
mika.saariaho@...
Nov 23, 2011 1:13 pm
How about making simple rules for stuff like changed priorities or completed tasks, then for more complicated things just make duplicate lines (for example...
3675
danilo77z77
Nov 23, 2011 5:14 pm
Hi All, I'm new to todo.txt but already like it. I use both the -cli and -touch versions... really cool!! I managed to do some initial customizations on the...
3676
savanni@...
savanninalkavir
Nov 23, 2011 5:40 pm
I've never commented before, but on this topic I actually have an opinion. For *my* purposes, I would like to see the Android application be allowed to work on...
3677
Joe Burgess
reeseslover531
Nov 24, 2011 2:54 pm
I think we have 3 different settings. They would be 1) Ask on conflict 2) always take server 3) always take local I know it adds complexity to an otherwise...
3678
Florian Behr
behrflorian...
Nov 26, 2011 11:22 am
I'm sorry I didn't have time for this during the week. Sadly I have to agree that it's not as simple as I wanted it to be, but we can at least go for best...
3679
Gina Trapani
gina.trapani
Nov 28, 2011 5:51 pm
... Keep in mind that task line numbers won't necessarily be the same on the local and remote copies, so one of the things this diff code will have to do is...
3680
Florian Behr
behrflorian...
Nov 28, 2011 9:42 pm
... Ok, one step at a time sounds reasonable :) I tend to get ahead of myself. Some days ago I also ran into another problem which discarded all my local ...
3683
pillowmetal
Nov 29, 2011 7:54 pm
I accomplished what you are requesting by using the TODOTXT_FINAL_FILTER and modifying Gina's original script to do a little more coloring and deal with dates...
3684
vladimir hruby
hruby@...
Nov 29, 2011 8:07 pm
cool! syntax: export TODOTXT_FINAL_FILTER="$TODO_DIR/todo_ff.sh" or export TODOTXT_FINAL_FILTER="$TODO_ACTIONS_DIR/todo_ff.sh" is better -- vladimir ... -- ...
3685
pillowmetal
Nov 30, 2011 2:04 am
Not a bad idea, but it depends on your setup... In my case the TODO_DIR is not where my executables like todo.sh are located. I put my todo text files in a...
3686
Ed Blackman
edgewood73
Dec 1, 2011 5:26 am
... Does the Dropbox revisions API help here? I haven't gotten into the -touch code yet, but I noted it when the Dropbox v1 API was announced. ...