summaryrefslogtreecommitdiffstats
path: root/doc/classes/CodeEdit.xml
Commit message (Collapse)AuthorAgeFilesLines
* Merge commit godotengine/godot@fd4c29a189e53a1e085df5b9b9a05cac9351b3efSpartan3222024-11-191-31/+31
|\
| * Improve TextEdit and CodeEdit documentationkit2024-11-141-31/+31
| |
* | fix: replace "Godot" to "Redot"Muhannad Elbolaky2024-10-151-2/+2
|/ | | | Trying to change "Godot" to "Redot" in the doc while acknowledging the reference to previous Godot versions like Godot 3.X.
* Draw a checkerboard behind translucent colors in CodeEdit autocompletion ↵Hugo Locurcio2024-08-091-0/+3
| | | | | | | previews This makes translucent colors easier to interpret as such and is consistent with how they're displayed in ColorPicker.
* Overhaul multiple caret editing in TextEdit.kit2024-04-261-4/+34
| | | | Use a multicaret edit to delay merging overlapping carets until the end.
* Overhaul some "uncommon" wording in class referenceMicky2024-03-011-7/+5
|
* Fix some DEFVALs to use the right typeRaul Santos2024-02-231-1/+1
| | | | | - Use `StringName()` in DEFVAL for StringNames. - Use `Variant()` in DEFVAL for Variants.
* Merge pull request #82748 from sepTN/than-then-typoRémi Verschelde2023-10-041-2/+2
|\ | | | | | | Fix typos in documentation: `than/then` and `loose/lose`
| * Fix typos in documentation: `than/then` and `loose/lose`Septian2023-10-041-2/+2
| |
* | Validate `code` tags for class and member referencesYuri Sizov2023-10-031-1/+1
|/ | | | | | | | This commit also adds means to manually disable warnings in `code` tags where it's a false positive with the new `skip-lint` attribute. Warnings are now enabled on CI to prevent future errors.
* Use bound theme properties for documentationYuri Sizov2023-09-261-70/+0
|
* Add Duplicate Lines shortcut to CodeTextEditorPucklaMotzer092023-09-251-0/+6
| | | | This keyboard shortcut has been made with inspiration from the VS Code keyboard shortcut editor.action.copyLinesDownAction. It duplicates all selected lines and inserts them below no matter where the caret is within the line.
* Add code region folding to CodeEditJean-Michel Bernard2023-09-111-0/+52
|
* Merge pull request #73196 from Vilcrow/fix-lookup-symbolYuri Sizov2023-07-241-1/+9
|\ | | | | | | Fix jumping to function definition using `Ctrl+LMB` or the "Lookup Symbol" button
| * Fixed the jumping to function definition using 'Ctrl+LMB' and the 'Lookup ↵S.V.I. Vilcrow2023-07-121-1/+9
| | | | | | | | Symbol' button.
* | Fix many typos in documentationSeptian2023-07-191-1/+1
| |
* | Doctool: Remove version attribute from XML headerRémi Verschelde2023-07-061-1/+1
| | | | | | | | | | | | We don't use that info for anything, and it generates unnecessary diffs every time we bump the minor version (and CI failures if we forget to sync some files from opt-in modules (mono, text_server_fb).
* | Bump version to 4.2-devRémi Verschelde2023-07-051-1/+1
| | | | | | | | Keep on waitin'
* | Merge pull request #75746 from ajreckof/order_autocompleteRémi Verschelde2023-06-081-0/+14
|\ \ | | | | | | Sort code autocompletion with rules
| * | sort code completions with rulesajreckof2023-05-231-0/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Fixups Add levenshtein distance for comparisons, remove kind sort order, try to improve as many different use cases as possible Trying again to improve code completion Sort code autocompletion options by similarity based on input To make it really brief, uses a combination `String.similiary`, the category system introduced in a previous PR, and some filtering to yield more predictable results, instead of scattering every completion option at seemingly random. It also gives much higher priority to strings that contain the base in full, closer to the beginning or are perfect matches. Also moves CodeCompletionOptionCompare to code_edit.cpp Co-Authored-By: Micky <66727710+Mickeon@users.noreply.github.com> Co-Authored-By: Eric M <41730826+EricEzaM@users.noreply.github.com>
* | | Overhaul the top sections of the class reference (GUI classes)VolTer2023-05-281-3/+3
|/ /
* | Move convert_indent into CodeEditPaulb232023-05-071-0/+9
| |
* | Fixed various typos across the docsUltraBIF2023-05-021-1/+1
| |
* | Bump version to 4.1-devRémi Verschelde2023-03-011-1/+1
| | | | | | | | Can't stop, won't stop, they said, huh?
* | Various classref typo fixesHaoyu Qiu2023-02-201-2/+2
|/
* Add missing period for sentences in classrefHaoyu Qiu2023-02-121-1/+1
|
* Allow unindent without selectionkobewi2023-01-181-7/+1
|
* fix typo 'comleption' -> 'completion'Michael Bickel2023-01-061-1/+1
|
* Document MDSF font outlines may require `msdf_pixel_range` adjustmentsHugo Locurcio2022-12-191-0/+1
|
* Style: Misc docs and comment style and language fixesRémi Verschelde2022-11-021-1/+1
| | | | | | | | | | - Removed empty paragraphs in XML. - Consistently use bold style for "Example:", on a new line. - Fix usage of `[code]` when hyperlinks could be used (`[member]`, `[constant]`). - Fix invalid usage of backticks for inline code in BBCode. - Fix some American/British English spelling inconsistencies. - Other minor fixes spotted along the way, including typo fixes with codespell. - Don't specify `@GlobalScope` for `enum` and `constant`.
* Remove override_selected_font_color propertykobewi2022-10-261-2/+2
|
* Replace Array return types with TypedArraykobewi2022-08-221-4/+4
|
* [doc] Fix grammar in class docs: amount vs. numberAndy Maloney2022-08-171-1/+1
| | | | | | Number is used for things that can be counted (discrete items - think "integer" in this context). Also fixes a couple of awkward phrases.
* [doc] Use "param" instead of "code" to refer to parameters (7)Andy Maloney2022-08-121-19/+19
|
* Rename the argument tag to param in XML documentationYuri Sizov2022-08-081-61/+61
|
* Add the ability to drag the code completion scrollbar using the mouse clickMinusKube2022-07-031-0/+3
|
* Add a new HashSet templatereduz2022-05-201-1/+1
| | | | | * Intended to replace RBSet in most cases. * Optimized for iteration speed
* Merge pull request #35679 from Calinou/doc-add-xml-schemaRémi Verschelde2022-02-151-1/+1
|\
| * Add an XML schema for documentationHugo Locurcio2022-02-151-1/+1
| | | | | | | | | | | | | | | | This makes it easier to spot syntax errors when editing the class reference. The schema is referenced locally so validation can still work offline. Each class XML's schema conformance is also checked on GitHub Actions.
* | Improve completion scroll bar visibility in the script editorHugo Locurcio2022-02-141-2/+2
|/ | | | | This makes the scroll bar bar thicker and more opaque (roughly matching the editor theme's scroll bar by default).
* Move placeholder color to theme itemPaulb232022-01-301-0/+3
|
* Rename request_code_completion signalkobewi2022-01-221-2/+2
|
* Improve the default project themeHugo Locurcio2022-01-191-4/+4
| | | | | | | | | | | | | | | | | | | | | | | The new default project theme uses StyleBoxFlat extensively for a more modern design and better scalability to multiple resolutions. SVG icons are now used in place of PNG icons. While this does not allow for true vector-based icon drawing (icons are still rasterized at load-time), this makes the design work easier for contributors and opens the door to vector drawing in the future (e.g. with polygons or SDFs). Like for editor icons, the SVG header file is now built automatically when a SVG file is changed. This removing the need for running `make_header.py` manually (TODO). The "Use Hidpi" project setting has been removed in favor of a "Default Theme Scale" project setting, which allows creating the default theme at a higher/lower scale than the default. This can be used when designing GUIs with a high base resolution to ensure crisp visuals. Co-authored-by: Yuri Sizov <yuris@humnom.net>
* Dictionary: Serialize empty dict as `{}` instead of `{\n}`Rémi Verschelde2022-01-181-1/+1
| | | | | Also make sure to always convert multiline dictionaries to a single line for its EditorHelp representation, as multiline values break formatting.
* Fix usage of "Return" in the docskobewi2022-01-021-3/+3
|
* Document that transparent StyleBoxes/textures should be used for UI focusHugo Locurcio2021-12-151-1/+1
|
* Make overridden properties link to parent definitionYuri Sizov2021-12-031-2/+2
| | | | Co-authored-by: Josh DeGraw <joshmdegraw@gmail.com>
* Sort and group theme properties in docs, improve formatting for theme and enumsYuri Sizov2021-12-011-52/+52
|
* Correct CodeEdit documentation mentioning parent property due to incorrect ↵Emmanuel Leblond2021-10-301-1/+0
| | | | array comparison
* doc: Fix style inconsistencies for `[b]Note:[/b]` paragraphsRémi Verschelde2021-10-051-3/+3
| | | | And fix up formatting not supported by makerst.