Skip to content
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

unable to paste text that I copy/cut to the clipboard from the "Save As..." dialog box #1127

Open
5 tasks done
oniwo opened this issue Oct 31, 2024 · 4 comments
Open
5 tasks done
Labels
bug Something isn't working

Comments

@oniwo
Copy link

oniwo commented Oct 31, 2024

Thanks in advance for your bug report!

  • Have you reproduced issue in safe mode?
  • Have you used the debugging guide to try to resolve the issue?
  • Have you checked our FAQs to make sure your question isn't answered there?
  • Have you checked to make sure your issue does not already exist?
  • Have you checked you are on the latest release of Pulsar?

What happened?

I am working on a project with so many files. some of the files internally reference files on the filesystem using their filesystem name. Mostly, I am not sure which file is accessing a certain file. Instead of typing the name of the referenced file to locate where it is referenced, I open the file, then activate the "File, Save As..." dialog box, copy or cut the file's filename and cancel the dialog box. Then activate "Find, Find in Project" and encounter the problem - I cant paste the text into the text to search text box.

Pulsar version

1.110.2023110716

Which OS does this happen on?

🐧 Red Hat based (Fedora, Alma, RockyLinux, CentOS Stream, etc.)

OS details

Fedora 41

Which CPU architecture are you running this on?

x86_64/AMD64

What steps are needed to reproduce this?

  1. Create a new File or Open an Existing File
  2. Activate "File, Save As..." dialog box
  3. Copy/Cut the filename (If there is no filename type some text and then Copy/Cut it)
  4. Cancel the dialog box (click Cancel or tap Esc key) to go back to file editing
  5. Paste the text on the clipboard. (the editor freezes)

Additional Information:

I go around the problem by first pasting the text in another application, then cut/copy it to the clipboard from that application, then come back to pulsar and now paste without any problem.
Screenshot from 2024-10-31 08-01-05
Screenshot from 2024-10-31 08-40-01

@oniwo oniwo added the bug Something isn't working label Oct 31, 2024
@savetheclocktower
Copy link
Contributor

I don't know exactly what's going on with that yet, but the good news is that I can probably streamline your workflow.

Open your init file and paste this in:

const Path = require('path');

atom.commands.add('atom-text-editor', {
  'custom:copy-active-editor-file-name-to-clipboard': () => {
    let editor = atom.workspace.getActiveTextEditor();
    let filePath = editor.getPath();
    if (!filePath) return;
    atom.clipboard.write(Path.basename(filePath));
  }
});

Then save and run the command Editor: Reload Window.

Now, whenever you're in an editor, you can open the command palette and run Custom: Copy Active Editor File Name To Clipboard to put the file’s name in your clipboard automatically.


On another note: we're up to Pulsar 1.122, so you might find it useful to update. (I doubt it would fix this bug, but we've fixed a lot of other bugs since then!)

@oniwo
Copy link
Author

oniwo commented Nov 5, 2024

thank you so much. I have updated to 1.122.0 and indeed the bug is still there.

@asiloisad
Copy link
Contributor

I can't reproduce it mm / win10x64 pulsar 1.122

@oniwo
Copy link
Author

oniwo commented Nov 13, 2024

I have reproduced it. See attachments for the platform.

Screenshot From 2024-11-13 18-29-22
Screenshot From 2024-11-13 18-30-51
Screenshot From 2024-11-13 18-32-27

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

No branches or pull requests

3 participants