When renaming a file, or changing the capitalization (and then of course also adapting the theory name), Isabelle will complain
`bad theory name [new name] for file [old file name.thy].
For Isabelle/jEdit it was sufficient to delete the corresponding ~ file.
For Isabelle/Vscode i still get the error, even after a restart of Isabelle/Vscode.
What can i do?
logging out didn't help either.
I think your error is somewhere else, Isabelle/VSCode doesn't try to remember a file name.
perhaps you are loading a session and the name is in the ROOT file?
Deleting the file, closing Isabelle/VsCode, opening Isabelle/Vscode, then restoring the theory (in my case i did it via git) worked
idk what a session is, but the header of my file looks like this:
theory Chomsky_Schuetzenberger
imports "../CFG" "../CFL" "../Parse_Tree" "Finite_Automata_Not_HF" "$AFP/Regular-Sets/Regexp_Constructions"
begin
I also use Isabelle/vscodes Open folder
instead of only this one file
Maybe there is a problem in your file system with case sensitivity?
E.g. on Macos file names are case insensitive so maybe your change didn't really work?
I have confirmed, that this also happens, when one only opens one file via Vscode.
What works when not using the open folder
feature, is to close all editors of the renamed file, and then restart vscode
I am using macOS atm, but im pretty sure i also had such a problem on windows before.
also i renamed the file using github, so idk what happens on macOS then
Let me hop on windows real quick
Moritz R said:
also i renamed the file using github, so idk what happens on macOS then
This might be the problem -- no idea what git does in this situation
Off-topic: Usually imports are session-qualified rather than using paths with environment variables
Off-topic: Usually imports are session-qualified rather than using paths with environment variables
i'm not sure what session-qualified means, but you mean i shouldn't use $AFP ? What is a better option?
"<sessionname>.<theoryname>"
I am actually surprised that the import with $AFP still work. Isabelle is now very strict on checking that you are using the session-qualified right if you have a ROOT file (and you should have one).
Ok, so on windows and macOS, if you use finder/explorer to rename the file everything works as expected.
On both systems, pulling a rename - e.g. someone else renamed it, pushed it into a github and you pulled it -
will get the mentioned error.
FIX:
What seems to work reliably, is to use
File -> Close Folder
, then restart Isabelle/VSCode.
You might have to select the file again, as it will still have the old file in the editor panel (idk where it saves that).
Mathias Fleury said:
I am actually surprised that the import with $AFP still work. Isabelle is now very strict on checking that you are using the session-qualified right if you have a ROOT file (and you should have one).
Well i dont know what a root file is, so i guess thats why my imports work?
https://isabelle.in.tum.de/doc/system.pdf, chapter 2; although the two slides from http://cl-informatik.uibk.ac.at/teaching/ss24/itpIsa/slides/12x1.pdf are probably as useful as the description in the system manual
Moritz R said:
Ok, so on windows and macOS, if you use finder/explorer to rename the file everything works as expected.
On both systems, pulling a rename - e.g. someone else renamed it, pushed it into a github and you pulled it -
will get the mentioned error.
FIX:
What seems to work reliably, is to use
File -> Close Folder
, then restart Isabelle/VSCode.
You might have to select the file again, as it will still have the old file in the editor panel (idk where it saves that).
This looks like a VSCode problem then, where it keeps the file cached when in reality it was changed on disk but only if the inode didn't change. This wouldn't have anything to do with Isabelle except that wer're still using an older version -- maybe it's fixed on newer VSCode versions
Yes, looks a lot like this issue, that isn't fixed in our version https://github.com/microsoft/vscode/issues/161743
Last updated: Apr 03 2025 at 20:22 UTC