Skip to content

Commit

Permalink
fix: use native copying
Browse files Browse the repository at this point in the history
  • Loading branch information
aminya committed Feb 6, 2021
1 parent 5de7c0e commit 08eff0e
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 45 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"busy-signal"
],
"dependencies": {
"atom-ide-base": "^2.2.0",
"atom-ide-base": "^2.3.2",
"atom-package-deps": "^6.0.0"
},
"devDependencies": {
Expand Down
71 changes: 29 additions & 42 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions src/signature-help-manager.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { CompositeDisposable, Disposable, Range, Point, TextEditor, TextEditorElement } from "atom"
import { ProviderRegistry } from "atom-ide-base/commons-atom/ProviderRegistry"
import { ViewContainer } from "atom-ide-base/commons-ui/float-pane/ViewContainer"
import { makeOverlaySelectable, makeOverLayCopyable } from "atom-ide-base/commons-ui/float-pane/selectable-overlay"
import { makeOverlaySelectable } from "atom-ide-base/commons-ui/float-pane/selectable-overlay"
import { SignatureHelpRegistry, SignatureHelpProvider } from "atom-ide-base"

export class SignatureHelpManager {
Expand Down Expand Up @@ -282,7 +282,6 @@ export class SignatureHelpManager {
})

makeOverlaySelectable(editor, view.element)
makeOverLayCopyable(view.element)

const marker = editor.decorateMarker(overlayMarker, {
type: "overlay",
Expand Down

0 comments on commit 08eff0e

Please sign in to comment.