Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-01-13Adds icon for Go To Line navigation UI.Anže Vodovnik
Fixes https://devdiv.visualstudio.com/DevDiv/_workitems/edit/1005823
2019-12-18Sync vs-editor-api and adopt code to changesDavid Karlaš
2019-12-05Sync with vs-editor-core changesDavid Karlaš
2019-10-29Fix IndentationManager local copySandy Armstrong
2019-10-29Include IndentationManagerImpl into VSMacDavid Karlaš
2019-10-09Integrate DiffPreviewDavid Karlaš
2019-09-26Editor: Upstream 'go to base' commandingSandy Armstrong
2019-08-05TextEditor: "Use Selection for Find" fixesSandy Armstrong
1. Rename "Use Selection for *" commands to have proper macOS labels 2. Move cmd+e keybinding from `FindNextSelection` command to `UseSelectionForFind`. 3. Add `UseSelectionForFind` command to main menu. 4. Add support for missing find commands to new editor. It's unfortunate that we have two similar commands here but it's important that cmd+e behaves as the user expects (it should not have "find next" behavior...it just sets search text and keeps focus in editor). Fixes https://dev.azure.com/devdiv/DevDiv/_workitems/edit/947125
2019-07-27Editor: Add TaskTagger so TODOs get highlightedSandy Armstrong
Fixes https://devdiv.visualstudio.com/DevDiv/_workitems/edit/918990
2019-07-17Editor: add Imaging.csprojAaron Bockover
2019-07-03Initial support for Textmate classification in new editorDavid Karlaš
`CommonEditorAssetServiceFactory` is implemented in Microsoft.VisualStudio.TextMate.Core.dll, hence removal I added `.py` for testing, because .js, .ts, .css... Are handled by WebTools... Rest of changes are integration of projects and needed MEF implementations to make it work. I decided to copy Textmate themes from VSEditor instead existing MD because easier future maintenance and because layout of file is as expected without additional work on MD side.
2019-06-27Fix 937834: In the new editor, the Chinese input repeats.David Karlaš
Removed `<Map` for Backspace command/key. So it’s not handled by MonoDevelop, hence its passed to native editor so `KeyDown` method is called which calls `InterpretKeyEvents` so native IME processing logic updates its internal state so IME input after typing more characters after Backspace is correct, otherwise IME reinserts deleted chars
2019-06-19[CompositionManager] Allow the IDE to recover from a state where the … (#7816)Marius Ungureanu
* [CompositionManager] Allow the IDE to recover from a state where the composition is broken Prompt the user with a dialog telling him that the current IDE state is broken and requires a restart, clearing the MEF caches. Fixes VSTS #892931 - MEF Cache goes haywire * A few fixups to improve UX and behaviour * Fix default button * Add some debugging code * fix * Try adding UI.Wpf to composition to fix CI issues * Add VS.Text.Internal
2019-05-30Integrate Changed lines margin and map used colorsDavid Karlaš
2019-05-30Merge pull request #7714 from mono/pr-anvod-gotolineAaron Bockover
Fixes VSTS 733501: Go To Line Number
2019-05-29Lighting up Go To LineAnže Vodovnik
2019-05-23Fix 762833: Implement selection drag and drop within/across text viewsDavid Karlaš
2019-05-14XML changes to enable Go To Base Member.Anže Vodovnik
2019-04-25Adjust paths to assemblies in bin when adding to MEF from Cocoa.addin.xml.Kirill Osenkov
2019-04-25Join two groups of MEF assemblies into a single group.Kirill Osenkov
2019-04-25Fix Windows build.Kirill Osenkov
Move editor implementations from Ide.addin.xml to Cocoa.addin.xml.
2019-04-16TextEditor.Cocoa: Add missing signature help iconsSandy Armstrong
2019-04-09Fix assembly loading issue with new editorLluis Sanchez
2019-04-04Merge branch 'new-service-model' into new-doc-modelLluis Sanchez
2019-04-04MonoDevelop.TextEditor.Cocoa: Build as part of md-addinsSandy Armstrong
The base MonoDevelop.TextEditor add-in is still built as part of MonoDevelop so that its extension points can be easily referenced by other add-ins. The new Cocoa editor only builds as part of md-addins, though.
2019-03-25Fix new editor initialization issueLluis Sanchez
Make sure the new editor extension is registered before the legacy editor.
2019-02-27TextEditor: map find commandsAaron Bockover
2019-02-22Integrate CurrentLineHighlighterDavid Karlaš
2019-02-18Add MS.VS.Text.Find.Implementation to the Cocoa MEF composition.Kirill Osenkov
2019-02-15Integrated Whitespace support in new editorDavid Karlaš
2019-02-14Not used on mac yet, it seemsMarius Ungureanu
2019-02-14Runtime load interfaces.dll and cocoa controls macOStherzok
2019-02-14Sort the mef imported assembliestherzok
2019-02-13Editor: Use new imageid format for StockIconsSandy Armstrong
Fixes addin crash on IDE launch.
2019-02-07Fix word selection when double clicking on word in codeDavid Karlaš
2019-02-01Map Delete key to DeleteLeft on Mac and DeleteRight on Windows.Kirill Osenkov
2019-01-31TextEditor: add find/replace imagesAaron Bockover
2019-01-25[build] Integrate new StructureImpl projectJérémie Laval
2019-01-22Initial Debugger support in new editorDavid Karlaš
2019-01-19Switch TextEditor.{Cocoa,Wpf} to sdk styleMikayla Hutchinson