-
Notifications
You must be signed in to change notification settings - Fork 12
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
VIRA-282: Make the vira_report and vira_menu readonly #47
Comments
We do have issues to edit them in place but for now you can use the The report is the place for editing and menus for selecting. I do have an issue for editing and bulk editing in the menus. |
Async updates will now be applied to menus and reports bit this may not be 100% easy. |
Once the update of async next step is to send info without an extra window then have the fake read only work. I am sure there is a way to toggle the read only once I actually look for it. |
A note for myself:
|
@chinwobble I have done a merge one my VIRA-69 for this issue NOT the proper way, right away onto dev and risk onto master and that also made me remember this was not too much fun. There will be a proper way to do it especially now that I can multitask in vim and nvim. I will just need to turn it on and off while hide it from the display. This will also solve another one of your issues to be able to hide to the report titles. I am sure this will become upgrade them into these report titles but that will be the next great step after this. |
@chinwobble VIRA-213 should now how a readonly as needed. I shill needed to make it pretty but that can also be merged into the hiding of the entire "tab's" ugliness. Let me know how it goes for you. |
should this be nomodifable instead? |
Yup, I just need to hide the message. EditIn case you were confused that is what I needed to do to make those ones nomodifiable, I know it looks wrong. |
I added one line of code to make make it a bit better but something is wrong deeper down. It is no longer styling the REPORT the way it was. |
@chinwobble that VIRA-213 push should definitely pass for this now. |
The UI is very slow for me now. Here's how you can profile the python code. python3 << EOF
import vim
import cProfile
with cProfile.Profile() as pr:
Vira.api.connect(vim.eval('g:vira_serv'))
pr.dump_stats('/tmp/vira_connect_stats.log')
EOF Note you must not have any white space before / indents. For me it takes 4-5 seconds just to finish the |
This one is working for me. Only difference I will make is move it into |
I will take a closer look at it for sure. |
@chinwobble I believe the issue here is closed and only remains with the async issue. |
What I did broken more than it fixed so I removed a line and need to reopen this issue. |
Updated the issued number to break it free from the general open the doors and |
I did a push that covers the start if this one again and the small stuff starts to appear on me. VIRA-282 branch exists for now. I am sure more will come but here is a list for now:
|
Mostly into true code cleanup and hunt for bugs then it should be all good. |
@chinwobble this is on the |
|
Check out the I will close this one and on to the other ones as long as it is working for some other people. |
The vira_report and vira_menu are readonly.
Based on my usage, you have created vira_prompt so that you can edit each section of a jira individually.
Like in fugitive in the git status screen you aren't allowed to edit text.
The text was updated successfully, but these errors were encountered: