Bug 1565806
| Summary: | Typo in ktikz auto-completion | ||||||
|---|---|---|---|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | nanority | ||||
| Component: | ktikz | Assignee: | Mohamed El Morabity <pikachu.2014> | ||||
| Status: | CLOSED ERRATA | QA Contact: | Fedora Extras Quality Assurance <extras-qa> | ||||
| Severity: | low | Docs Contact: | |||||
| Priority: | unspecified | ||||||
| Version: | 27 | CC: | pikachu.2014 | ||||
| Target Milestone: | --- | ||||||
| Target Release: | --- | ||||||
| Hardware: | All | ||||||
| OS: | Linux | ||||||
| Whiteboard: | |||||||
| Fixed In Version: | ktikz-0.12-3.fc27 ktikz-0.12-3.fc28 ktikz-0.12-6.fc29 | Doc Type: | If docs needed, set a value | ||||
| Doc Text: | Story Points: | --- | |||||
| Clone Of: | Environment: | ||||||
| Last Closed: | 2018-09-27 16:17:50 UTC | Type: | Bug | ||||
| Regression: | --- | Mount Type: | --- | ||||
| Documentation: | --- | CRM: | |||||
| Verified Versions: | Category: | --- | |||||
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |||||
| Cloudforms Team: | --- | Target Upstream Version: | |||||
| Embargoed: | |||||||
| Attachments: |
|
||||||
Hi! The bug still exists. Any chance to have this fixed at some point? Regrads, Nanority Hello, thanks for your bug report. Could you report it upstream (https://github.com/fhackenberger/ktikz/issues) first? Once submitted, I'll be habby to backport it in the Fedora package. Hi! Upon the initial filing of this bug I also created a pull-request with my patch upstream (https://github.com/fhackenberger/ktikz/pull/20). Unfortunately, there has been so reaction so far. ktikz-0.12-3.fc27 has been submitted as an update to Fedora 27. https://bodhi.fedoraproject.org/updates/FEDORA-2018-901e3584cd ktikz-0.12-6.fc29 has been submitted as an update to Fedora 29. https://bodhi.fedoraproject.org/updates/FEDORA-2018-dc782c1f3e ktikz-0.12-3.fc28 has been submitted as an update to Fedora 28. https://bodhi.fedoraproject.org/updates/FEDORA-2018-feb80e2de8 ktikz-0.12-3.fc27 has been pushed to the Fedora 27 testing repository. If problems still persist, please make note of it in this bug report. See https://fedoraproject.org/wiki/QA:Updates_Testing for instructions on how to install test updates. You can provide feedback for this update here: https://bodhi.fedoraproject.org/updates/FEDORA-2018-901e3584cd ktikz-0.12-3.fc28 has been pushed to the Fedora 28 testing repository. If problems still persist, please make note of it in this bug report. See https://fedoraproject.org/wiki/QA:Updates_Testing for instructions on how to install test updates. You can provide feedback for this update here: https://bodhi.fedoraproject.org/updates/FEDORA-2018-feb80e2de8 ktikz-0.12-6.fc29 has been pushed to the Fedora 29 testing repository. If problems still persist, please make note of it in this bug report. See https://fedoraproject.org/wiki/QA:Updates_Testing for instructions on how to install test updates. You can provide feedback for this update here: https://bodhi.fedoraproject.org/updates/FEDORA-2018-dc782c1f3e ktikz-0.12-3.fc27 has been pushed to the Fedora 27 stable repository. If problems still persist, please make note of it in this bug report. ktikz-0.12-3.fc28 has been pushed to the Fedora 28 stable repository. If problems still persist, please make note of it in this bug report. ktikz-0.12-6.fc29 has been pushed to the Fedora 29 stable repository. If problems still persist, please make note of it in this bug report. |
Created attachment 1420064 [details] Patch for typo Description of problem: The auto-completion and syntax highlighting has a typo for the node option "text height" which is spelled "text heigth" in the program resulting in a compilation error of LaTeX. Version-Release number of selected component (if applicable): ktikz-0.12.2.fc27.src How reproducible: Reproducible every time Steps to Reproduce: 1. Start ktikz 2. Create a tikzpicture environment using "\begin{tikzpicture}" and "\end{tikzpicture}" 3. In the environment, add a node by typing "\node [text" 4. ktikz will suggest auto-completion with (besides other options) "text heigth" 5. Choosing the option and finishing the command, e.g. like "\node [text heigth=1] at (0,0) {};" will result in a compilation error of LaTeX. For the sake of completeness the full tikz-script: \begin{tikzpicture} \node [text heigth=1] at (0,0) {}; \end{tikzpicture} Actual results: [LaTeX] Line 2: Package pgfkeys Error: I do not know the key '/tikz/text heigth', to which you passed '1', and I am going to ignore it. Perhaps you misspelled it. [LaTeX] Line 2: See the pgfkeys package documentation for explanation. ... l.-5 \node [text heigth=1] at (0,0) {}; [LaTeX] Line 2: ==> Fatal error occurred, no output PDF f Expected results: Auto-completion with the option "text height" and successful compilation. Additional info: - Tested in qtikz. - Based on ktikz-0.12.2.fc27.src I created a patch (attached), but did not test it so far. - The bug should probably be reported upstream.