-
-
Notifications
You must be signed in to change notification settings - Fork 8
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
Problems With Comments Using Neovim Setup #24
Comments
Hi @hzerbini thank you for your kind words! Can you drop the code as a "code block" from under the |
Sure, @section('content')
<div class="os-tabs-w mx-4">
<div class="os-tabs-controls">
<ul class="nav nav-tabs upper">
<li class="nav-item">
<a aria-expanded="false"
class="nav-link active"
data-toggle="tab"
href="#tab_purchase_quotation_freight_service"> Serviços de frete internacional
</a>
</li>
<li class="nav-item">
<a aria-expanded="false"
class="nav-link"
data-toggle="tab"
href="#tab_purchase_quotation_additional_services"> Serviços adicionais
</a>
</li>
<li class="nav-item">
<a aria-expanded="false"
class="nav-link"
data-toggle="tab"
href="#tab_purchase_quotation_extra_costs"> Despesas Administrativas
</a>
</li>
{{--<li class="nav-item">--}}
{{--<a aria-expanded="false"--}}
{{--class="nav-link"--}}
{{--data-toggle="tab"--}}
{{--href="#tab_purchase_quotation_attachment"> Anexos--}}
{{--</a>--}}
{{--</li>--}}
</ul>
</div>
<div class="tab-content">
@include('processes.partials.tab_purchase_quotation_freight_service')
@include('processes.partials.tab_purchase_quotation_additional_services')
@include('processes.partials.tab_purchase_quotation_extra_costs')
{{--@include('processes.partials.tab_purchase_quotation_attachment')--}}
</div>
</div>
@if( $process->process_status_id == \App\Models\ProcessStatus::STATUS_EM_ANDAMENTO)
<div class="form-buttons-w" id="form-btns">
<input type="hidden" id="tab-name" name="tab-name">
@if( isset($process) && $process->process_step_id == \App\Models\ProcessStep::STEP_PURCHASE_QUOTATION )
<button class="btn btn-warning btn-finalize" data-id="{{ $process->id }}" data-step="{{ $process->process_step_id }}">Finalizar Etapa</button>
@endif
<div class="pull-right">
<a class="btn btn-secondary" href="{{ route('processes.index') }}">Fechar</a>
</div>
</div>
@endif
@endsection |
In the meantime, it'll be a work-around, but please try to put a space in the blade comment. Before: {{--@include('processes.partials.tab_purchase_quotation_attachment')--}} After: {{-- @include('processes.partials.tab_purchase_quotation_attachment') --}} |
I can confirm it's an issue with the The issue seem to be specifically related to the closing |
Hi @hzerbini that is the bug 🐞 fixed, please use the v0.3.2. |
I've set it up using the discussion here #19, and I'm facing this problem:
Do you think this problem is about the parser, or i messed up something in my configuration file?
My configuration: https://github.com/hzerbini/.dotfiles
And I really appreciate the effort of you writing this parser, it was something that i really missed.
Thanks for your hard work on this.
The text was updated successfully, but these errors were encountered: