-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix typo in src/po/fr.po #1
Open
romainl
wants to merge
1,384
commits into
dpelle:master
Choose a base branch
from
romainl:fix/typo-fr.po
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Problem: Vim9: compiled functions are not profiled. Solution: Add initial changes to profile compiled functions. Fix that a script-local function was hard to debug.
Problem: Build fails without +profiling feature. Solution: Add #ifdefs.
Problem: Some filetypes not detected. Solution: Detect Ruby Signature and Puppet related files. (Doug Kearns)
Problem: Vim9: profiling if/elseif/endif not correct. Solution: Add profile instructions. Fix that "elseif" was wrong.
Problem: Vim9: profiling try/catch not correct. Solution: Add profile instructions. Fix that "entry" did not rethrow an excpetion.
Problem: Vim9: no need to allow white space before "(" for :def. Solution: Give an error for stray white space. (issue vim#7734)
Problem: Vim9: profiled :def function leaks memory. Solution: Delete the profiled instructions.
Problem: Old jumplist code is never used. Solution: Delete the dead code. (Yegappan Lakshmanan, closes vim#7740)
Problem: MinGW: "--preprocessor" flag no longer supported. Solution: Remove the flag, use the defaults. (Christopher Wellons, closes vim#7741)
Problem: Vim9: profiling only works for one function. Solution: Select the right instructions when calling and returning. (closes vim#7743)
Problem: Build failure without the +profiling feature. Solution: Add dummy argument to macro.
Problem: Profile test fails on MS-Windows. Solution: Do the profiling in a separate Vim command.
Problem: Not all fields in "cstack" are initialized which might cause a crash. Solution: Use CLEAR_FIELD().
Problem: Crash when using :all while using a cmdline window. (Zdenek Dohnal) Solution: Disallow :all from the cmdline window.
Problem: Using freed memory when closing the cmdline window. Solution: Check the window is still valid.
Problem: No way to check for the cmdwin feature, cmdline_hist is now always enabled. Solution: Add has('cmdwin') support. Skip arglist test on Windows temporarily.
Problem: May get stuck in command line window state. Solution: Reset "cmdwin_type" when editing buffer fails. Make arglist test pass on MS-Windows.
Problem: Condition stack values may be used when not set. Solution: Clear cs_script_var_len and cs_block_id just in case they get used later. (issue vim#7733)
…rtEnter Problem: Color not changed if ModeMsg highlight is set in InsertEnter autocmd event. (Paul Swanson) Solution: Call highlight_changed() after triggering InsertEnter. (closes vim#7751)
Problem: Autocmd test was failing on MS-Windows with GUI. Solution: Remove stray feedkeys().
Problem: Too many problems with using all autocommand events. Solution: Disallow defining an autocommand for all events.
Problem: Double free when using autocommand with "argdel". (Houyunsong) Solution: Add the arglist_locked flag.
Problem: Crash when deleting with line number out of range. (Houyunsong) Solution: Avoid using a negative line number.
Problem: Missing error message. Solution: Add the error message.
Problem: Some tests are known to cause an error with ASAN. Solution: Add CheckNotAsan.
Problem: Cursor on invalid line with range and :substitute. Solution: Do not move the cursor when skipping commands. (closes vim#3434)
Problem: Allowing 'completefunc' to switch windows causes trouble. Solution: use "textwinlock" instead of "textlock".
Problem: Can still switch windows for 'completefunc'. Solution: Also disallow switching windows for other completions.
Problem: FocusGained does not work when 'ttymouse' is empty. Solution: Don't use the short mouse code if there is a longer matching code. (closes vim#7755) Add a test.
Problem: Vim9: script variable in a block scope not found by a nested function. Solution: Copy the block scope IDs before compiling the function.
… refs Problem: Vim9: cannot use a normal list name to store function refs. Solution: Allow a lower case name if it is indexed.
Problem: Vim9: no test for return type of lambda. Solution: Add a test.
Problem: Vim9: Using #{ for a dictionary gives strange errors. Solution: Give an error when using #{ for a comment after a command.
Problem: typval2type() cannot handle recursive structures. Solution: Use copyID. (closes vim#7979)
Problem: GTK: error when starting up and -geometry is given. (Dominique Pellé) Solution: Use another function to get the monitor if the window has not been created yet. (closes vim#7978)
Problem: Some tests fail when run as root. Solution: Use CheckNotRoot.
Problem: Atom files not recognized. Solution: Recognize .atom as XML. (Kivin Locke, closes vim#7986)
Problem: Rss files not recognized. Solution: Recognize .rss as XML. (Kivin Locke, closes vim#7987)
Problem: GTK3: error when starting up and -geometry is given. (Dominique Pellé) Solution: Use another function to get the monitor if the window has not been created yet. (closes vim#7978)
Problem: No need to check for BSD after checking for not root. Solution: Remove CheckNotBSD. (Ozaki Kiichi, closes vim#7989)
Problem: Vim9: #{ can still be used at the script level. Solution: Give an error for #{ like in a :def function.
Problem: Vim9: error for #{{ is not desired. Solution: Adjust the checks. (closes vim#7990)
Problem: Hard to see where a test gets stuck. Solution: Print the executed test function. (Dominique Pellé, closes vim#7975)
Problem: Commands from winrestcmd() do not always work properly. (Leonid V. Fedorenchik) Solution: Repeat the size commands twice. (closes vim#7988)
Problem: Not all command line arguments are tested. Solution: Add tests for -D and -serverlist. (Dominique Pellé, closes vim#7992)
Problem: 'tagfunc' does not indicate using a pattern. Solution: Add the "r" flag. (Andy Massimino, closes vim#7982)
Problem: Vim9: cannot define an inline function. Solution: Make an inline function mostly work.
Problem: Memory leak when compiling inline function. Solution: Free the prefetched line.
Problem: prop_remove() causes a redraw even when nothing changed. Solution: Only redraw if a property was removed.
Problem: Cannot write a message to the terminal from the GUI. Solution: Add :echoconsole and use it in the test runner. (issue vim#7975)
Problem: Build failure when fsync() is not available. Solution: Add #ifdef.
Problem: screenstring() returns non-existing composing characters. Solution: Only use composing characters if there is a base character.
Problem: Display test fails because of lacking redraw. Solution: Add a redraw command.
Problem: Vim9: no clear error for wrong inline function. Solution: Check for something following the "{".
Problem: Various code not covered by tests. Solution: Add a few more test. (Yegappan Lakshmanan, closes vim#7995)
… changed Problem: prop_clear() causes a screen update even when nothing changed. Solution: Only redraw when a property was cleared. (Dominique Pellé)
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
The
--not-a-term
argument was incorrectly spelled--no-a-term
.