asm-code-lens icon indicating copy to clipboard operation
asm-code-lens copied to clipboard

A vscode language server that enables code lens, references, hover information and symbol renaming in asssembler files.

Results 10 asm-code-lens issues
Sort by recently updated
recently updated
newest added

I think it's not right icon in donation info, my eyes sensitive with :x:. It will better if the icon is :information_source: ![image](https://user-images.githubusercontent.com/72451078/178135142-c60a178c-6e0d-4f19-9dd5-24338d7a03c4.png)

This edit allows breakpoints in assembly files, which allows for much better debug experience. I've tried this with NASM and the vscode C/C++ debugger and it worked perfectly.

In vscode 1.58.2 the hex calculator window does not move if a panel above (e.g. callstack) is expanded above: ![Bildschirmfoto 2021-08-04 um 07 44 02](https://user-images.githubusercontent.com/3081973/128205338-10228d83-f9b8-4457-b289-aabc217a8d5f.jpg)

Example (x86, GNU Assembler, Intel syntax): ```asm mov byte ptr [ecx + 1*eax], '-' ``` Currently, `byte` and `ptr` are highlighted in different colors.

Using x86 ASM with GNU Assembler and Intel syntax. `ah`, `bh` and `ch` are highlighted in some light green color, `dh` is purple, and `sp` is a darker cyan. Other...

The current implementation searches all *.asm unstructured, i.e. it does not look for dependencies like 'include'. This also makes the implementation quite messy. It would b emore structured to define...

enhancement

I should keep all CodeLenses alive in arrays to determine which require an update. vscode 1.27 provides a new search API: workspace.findTextInFiles See thread here: https://vscode-dev-community.slack.com/messages/C74CB59NE/convo/C74CB59NE-1535575944.000100/ I.e.: I'm trying to...

enhancement

I have some ancient code written by me, which was assembled with M80. Apparently I found out that M80 supports $-signs in labels as I have code looking like: ----...

wontfix

Version: 3.0 ![Bildschirmfoto 2022-11-23 um 18 28 36](https://user-images.githubusercontent.com/3081973/203611274-128b71b2-b51d-4d17-944d-9861061bedb3.jpg) Is shown when clicking on "4 references" ![Bildschirmfoto 2022-11-23 um 18 29 06](https://user-images.githubusercontent.com/3081973/203611361-06385fd4-adb9-49d0-a2fe-1b8d98a2f743.jpg) Some time later it works: ![Bildschirmfoto 2022-11-23 um 18...

bug
vscode