-
Notifications
You must be signed in to change notification settings - Fork 15
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
Trackma cuts long anime names #9
Comments
Actually I am not sure why that happens. And is not a fzf issue, seems to be something else. trackma list Results into a table as wide as your terminal. Doesn't look the same and it gets cut:
tlist=$(trackma list) #or tlist=`trackma list`
echo "$tlist"
trackma list > list.txt
cat list.txt or trackma list 1> list.txt
cat list.txt
{ tlist=$(trackma list | tee >(cat - >&5)); } 5>&1 exec > >(tee -ia script.log)
trackma list
|
Should we maybe ask that question on a forum? Because it is indeed super weird |
Well I did try anything I thought of. I also looked on the trackma issues but honestly didn't find anything. I am starting to think this might be a |
Maybe there is some weird character in the trackma list output that makes it do that. |
I will install Also OMG I have my very own entry in the AUR... by you. Thx. |
Nope still the same. Actually exact same version 0.8.2 between git and pip. |
@Baitinq I opened the issue as I said. I also have nr 453 as well because trackma has an issue where the missing dot for entry 1 is enough to throw an error. As you know adl strips those dots for processing. |
Yea hahah I like to have all the programs I use in the aur |
Ill comment on the issue now to try and make it more visible. Thanks |
@Baitinq you will also be affected by z411/trackma#453 if you have an anime ending with a |
Okay thanks for the info, lets hope this gets solved soon. |
@RaitaroH It seems like someone has found a fix for this. Check the trackma issue page |
@Baitinq I did look at it. Unfortunately until the PR is merged one needs to go in and change that file on their own, or adl will not even work. I might just add like a custom test just to see if the file was modified... except I used |
@Baitinq make the following change |
I am getting this error when changing that get_list() function
Do I have to apply the pull request manually for this to work? |
I am getting this other error when I apply the patch and change the get_list() function:
|
Apply the PR manually of course.
^^^ I did tell you. For me the PR works perfectly.
|
hmm that is so weird |
@RaitaroH nvm, I was able to fix it. Thanks |
@RaitaroH Could you add the |
@Baitinq thx for notifying me about the merge: z411/trackma@020c0a2 |
When you have an anime in your anime list with a lot of characters (as an example: JoJo's Bizarre Adventure: Stardust Crusaders - Battle in Egypt), fzf shortens it to
JoJo's Bizarre Adventure: Stardust Crusaders -
, meaning that it will not show up as the first option in the next screen. This isnt a problem right now but if you end up implementing the -y option it could become a problem. (Also it isnt aesthetic to see your anime name shortened like that). I know it is a fzf problem but maybe there is an option to prevent this?Thanks
EDIT: It also makes it so you cant increase the nr, resulting in a real problem
The text was updated successfully, but these errors were encountered: