Skip to content

Commit 2c1cb08

Browse files
committed
CHANGED: updated documentation
1 parent 77577c7 commit 2c1cb08

File tree

6 files changed

+32
-11
lines changed

6 files changed

+32
-11
lines changed

Todo.txt

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
issue: after box text is changed, connected elements are not properly reconnected
2+
3+
mind mapping mode
4+
use a grid for parent-children layout
5+
manual layout of specific nodes
6+
shortcut like git or selection mode
7+
8+
re lay out all nodes, only non manual nodes
9+
use direction arrows
10+
11+
update the inline help and the display of action files
12+
13+
add link commands shortcuts
14+
L as link group
15+
display the targets or sources
16+
allow connection to multiple targets
17+
+ introduces the next target
18+
no + means single target
19+
20+
selection of multiple targets by content, with fuzzy search
121

222
bindings overlay
323
on off

documentation/mdbook_asciio/src/Interface.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ Asciio's interface is minimal by design.
88

99
This is the preferred method, and the fastest. The bindings are vim-like and which make the many bindings much easier to remember. See the *Bindings* section
1010

11-
## mouse binidings
11+
## mouse bindings
1212

13-
Although work can mostly be done using the keyboard, the mouse is still useful in some ccases (selecting in a TUI is difficult) and it even shines when creating new diagrams. See *Working efficiently*
13+
Although work can mostly be done using the keyboard, the mouse is still useful and it's fast when creating new diagrams. See *Working efficiently*
1414

1515
## popup menus
1616

17-
My least favorite way of using Asciio, it's slow and cumbersome for most actions. I try to reduce the amount of menu and sub menus.
17+
My least favorite way of using Asciio, it's slow and cumbersome for most actions. I try to limit the amount of menu and sub menus.
1818

1919

documentation/mdbook_asciio/src/SUMMARY.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
- [Group bindings](config/user_bindings/group_bindings.md)
8787
- [Capturing groups](config/user_bindings/capturing_groups.md)
8888
- [Binding override](config/user_bindings/binding_override.md)
89-
- [Capturing groups with overalay](config/user_bindings/capturing_groups_overlay.md)
89+
- [Capturing groups with overlay](config/user_bindings/capturing_groups_overlay.md)
9090

9191
-----------
9292

documentation/mdbook_asciio/src/bindings/vim-like.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
To simplify, let's start with having 26 letters accessible on the keyboard, no uppercase.
66
- using ctl + alt + key gives us around 100 combinations
7-
- letter + leter gives use around 650 combinations
7+
- letter + letter gives use around 650 combinations
88
- letter + letter + letter gives use around 18 000 combinations
99

1010
If we had uppercase, ie, 52 letters
@@ -62,5 +62,5 @@ Do you remember (although you've just seen it) ...
6262
- insert a box
6363
- insert a box using unicode type 2
6464
- insert a box that shrinks
65-
- inserta box with the default unicode
65+
- insert a box with the default unicode
6666

documentation/mdbook_asciio/src/editing/mouse.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ If an arrow is selected, move its end point with the mouse.
3232
***Binding:*** «ctl-alt-left-mouse-click»
3333

3434
- If a wirl arrow is selected, add section.
35-
- if another element is selected, add new arror
35+
- if another element is selected, add new arrow
3636

3737
You can then move the its end point with the mouse. releasing «ctl» lets you move the mouse to another position for a new section.
3838

lib/App/Asciio/GTK/Asciio/Dialogs.pm

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -331,18 +331,19 @@ return $new_text
331331

332332
sub get_file_name
333333
{
334-
my ($self, $title, $mode, $directory) = @_ ;
334+
my ($self, $title, $mode, $directory, $file_name) = @_ ;
335335

336-
my $file_name = '' ;
337-
338-
my $file_chooser = Gtk3::FileChooserDialog->new
336+
my $file_chooser = Gtk3::FileChooserDialog->new
339337
(
340338
$title, undef, $mode,
341339
'gtk-cancel' => 'cancel', 'gtk-ok' => 'ok'
342340
);
343341

342+
$file_chooser->set_current_name("untitled_document") ;
344343
$file_chooser->set_current_folder($directory) if defined $directory ;
345344
$file_chooser->set_create_folders(1) ;
345+
346+
$file_name //= '' ;
346347
$file_name = $file_chooser->get_filename if ('ok' eq $file_chooser->run) ;
347348

348349
$file_chooser->destroy;

0 commit comments

Comments
 (0)