* It fixes issue #11261 by preventing the search bar from closing as a result of clicking in the main editor. This is done by commenting out the code in line 256. The search bar will also close when the ESC key is pressed while the main editor has focus
* Commented out unnecessary code around line 256
* [issue#11261] * Added in a menu option to allow find bar to stay open/automatically close
* Add a close icon to the search bar (for completeness)
* Fix escape key for in-editor searches
* Remember last search phrase if no selection for in-editor searches
* [issue#11261] Code clean up of initial mistakes of the previous commit
* [issue#11261] Strange issue with spacing in src/nls/fr/strings.js...
* [issue#11261] Strange issue with spacing in src/nls/fr/strings.js...
* [issue#11261] Further merge conflict resolution and clean up
* [issue#11261] Fix to branch and to testing
* [issue#11261] Fixes for incorrect regexp processing
* [issue#11261] Why does JSLint keep changing its own file
* [issue#11261] Not sure about the french one, let's exclude it for now until I can confirm with a Quebecois at work
* [issue#11261] Test left test file with change...
* [issue #11261] Minor fixes as per conversation of pull request
* [Issue #11261] Fixes mainly to the regular expression side of things
* [Issue #11261] Revert accidental change in JSLint
* [issue #11261] Remove loosy TODO and wording consistency change
* [Issue #11261] Remove Find Next on 'Find' option (we already have Find Next)
* [Issue #11261] (Retry the Travis CI build)
* Totally forgot to actually save the merge conflict resolution. Here it is.
* Merged master incorrectly - fix bad merge
* Fix test
Signed-off-by: petetnt <pete.a.nykanen@gmail.com>
* Add extract to variable and extract to function features
* Fix lint errors
* Handle return statement in extract to function
* Format comments
* Format inline menu code
* Fix extract to function bug
For extract to function, check the props of scopes from src scope to
dest scope(including dest scope) for computing the return parameters
* Move inlinemenu widget to brackets core
* Externalize strings and create constants for command ids
* Return on multicursor error
* Move keyboard bindings to keyboard json
* Add keyboard json
* Add styles for inlinemenu widget
* Show function body prefix for nameless functions
* Externalize UI strings
* Fix bug in sort function for list of expressions
* Fix bug in scope position for function expressions
* Close inline menu on ESC
* Add class name for named class expressions
* Remove extra line breaks
* If only one scope, extract to function without menu
* Check identifiers of all surrounding scopes for unique identier name
* Clone ASTNode object before return in findSurroundASTNode
The node object must be cloned because we change the node object
afterwards and if not cloned, it will changed the ast and will
cause issues
* Create getAST function in refactoringUtils
* Check erroneous function declarations
* Allow function and class expressions also as statement
* Display multi-line expressions also for extract to variable
* Check if expns is null
* Check variable declaration for find name of class expn
* Change ecmaVersion in ternOption
* Move command and menu creation to javscriptrefactoring/main and add submenu
* Add refactor to strings and remove redundant keybinding lines
* Add extract to variable tests
* Remove wrong test case
* Add extract to function tests
* Add more tests
* Add unit tests for rename, wrap selection,getter/setter and convert to arrow function (#14022)
* Add Preact library
* Change react to preact
* Fix problems caused by replacing react with preact
* Add Preact test utils and dependencies
* Change requires from react to preact in FileTreeView-test
* Fix problems caused by replacing react test utils with preact test utils
* Remove react
* Make findRenderedDOMComponentWithTag function as helper function
* Find and Replace react with preact
* Make preact, preact-compat, preact-test-utils as node_modules
* Change preact-compat dependency to point to adobe's fork
* JSUtils modification to handle es6 constructs
* Addressed review comments and added es6 test cases
* Address Code review comments and add support for ArrowFunctionExpressions with new test case
* Update comments
* Refactor to remove extra variables
* Now BOM is preserved for UTF-8 files
* Added error strings for failure in encode/decode and utf-16
* Removed utf-16 from encodings list
* Addressed review comments
* Now encoding is passed as parameter on file read and it is used by writefile in order to preserve encoding
* UI wiring
* Code Cleanup
* Fixed failing tests
* Added warning Dialog while changing encoding
* Added some Linux specific changes
* Fixed some linting errors
* Reverted last commit
* Minor changes
* Now selected encoding is stored in state
* Fixed lint error
* Added some more encodings
* Added some more encodings
* Fixed lint errors
* Removed duplicate encodings
* Fixed failing tests
* Used externalized strings
* Addressed review comments
* Added supported encodings file
* Addressed review comments
* Addressed review comments
* Added Extension Sorting capability according to downloads and last published date
* Passed sort criteria to sortRegistry function in registy_utils
* Added some tests
* Added check for existence of downloadCount in extension-manager
* Added test for checking downloadCount in ExtensionManager view
* Added svg image for download icon in Extension Manager
* use npm to download extension dependencies
add shrinkwrap
* exec npm instead of using internal API
refactor
refactor 2
* update npm
* initialize exitCode
* move fail and finish blocks out
* do not use ternary ifs
* little fix
* update npm-shrinkwrap
* move npm installation to the package extraction step
* consistent function style
* add proxy support
* npm-shrinkwrap.json
* Added apis for manipulating gutters in Editor
* fix bug with line number initialisation
* enabled filtering the gutter displayed based on the language of the current editor
* Addressed CR comments.
registering/unregistering/getting registered gutters are now `static` objects on the editor class.
modified code folding gutter to use new api.
* added tests for gutter apis
* addressing code review comments
* revert space
* addressed more missed code review comments