Ticket #383 (closed defect: fixed)
Autocompletion in editor don't work
Reported by: | slavazanko | Owned by: | slavazanko |
---|---|---|---|
Priority: | major | Milestone: | 4.7.0-pre1 |
Component: | mc-core | Version: | master |
Keywords: | commited-master | Cc: | pahan@… |
Blocked By: | Blocking: | ||
Branch state: | Votes for changeset: |
Description
Test case:
1) open new file for edit (shift+F4)
2) type 'Teststring', press 'Enter'
3) type 'Test' and press Esc,Tab (alt+tab)
Must be autocompleted to 'Teststring', but nothing do.
Also, autocomplete works inly with English words (0-9a-zA-Z mask). I think, need rework.
Change History
comment:1 Changed 15 years ago by slavazanko
- Status changed from new to accepted
- Keywords review added
comment:3 follow-up: ↓ 4 Changed 15 years ago by andrew_b
- Keywords rework added; review vote-styx removed
Autocomplete doesn't find the word at the begin of file.
How to reproduce:
- Create new empty file using Shift-F4.
- Type the 'abc' word at the position 0 in the 1st line.
- Press Enter.
- Type 'a', then press Esc-Tab. Result: nothing happened.
- Go to the begin of file.
- Insert any char (even space) at the begin of 1st line. Now this line is ' abc'.
- Go to the end of 2nd line (after the 'a' char).
- Press Esc-Tab. Result: 'a' autocompleted to the 'abc'.
comment:4 in reply to: ↑ 3 Changed 15 years ago by andrew_b
Oh, sorry...
Replying to andrew_b:
- Insert any char (even space) at the begin of 1st line. Now this line is ' abc'.
- Insert space at the begin of 1st line. Now this line is ' abc'.
comment:7 Changed 15 years ago by slavazanko
- Keywords review added; rework removed
Autocomplete doesn't find the word at the begin of file.
changeset:a271cb0e7126ac1ecf5632273d5d734203afa3c1
Now fixed. review, please.
comment:10 Changed 15 years ago by angel_il
shift-f4
input:
w <enter>
wWWWWWW
-move cursor
press ecs tab
i think current word need skip.
comment:11 Changed 15 years ago by angel_il
fox: move cursor to left. place after w< here >WWWWWW
comment:13 Changed 15 years ago by angel_il
- Keywords review vote-andrew_b vote-angel_il added; rework removed
now it feature :)
comment:15 Changed 15 years ago by slavazanko
- Keywords commited-master added; review vote-andrew_b vote-angel_il approved removed
- Status changed from accepted to testing
- Resolution set to fixed
- Blocked By 419 removed
created branch 383_editor_autocomplete (parent: master)
Commits:
Fix autocompletion: changeset:1a83d7168e8ed03f0c5e0961b289c335b7eae716
Autocompletion of any words: changeset:2a008929fbdb7fabfa6104224865134593f723a0
Review, please.